-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path(Level 1) Task 2:- Portfolio
More file actions
134 lines (118 loc) · 2.62 KB
/
Copy path(Level 1) Task 2:- Portfolio
File metadata and controls
134 lines (118 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#HTML CODE
************************************************************************************
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>My Portfolio</title>
</head>
<body>
<header>
<h1>Aditya Konda</h1>
<p>Web Developer | Full Stack Developer</p>
</header>
<section id="about">
<img src="profile.jpg" alt="Aditya Konda" />
</section>
<section id="about1">
<h2>
I'm a passionate web developer and designer with a keen eye for detail.
</h2>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="project">
<img src="project1.jpg" alt="Project 1" />
<h3>Project 1</h3>
<p>Designed and coded a responsive website for a local business.</p>
</div>
<div class="project">
<img src="project2.jpg" alt="Project 2" />
<h3>Project 2</h3>
<p>
Developed a JavaScript-based interactive portfolio showcasing my work.
</p>
</div>
</section>
<section id="resume">
<h2>Resume</h2>
<p><a href="resume.pdf" download> Download Resume (PDF)</a></p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Email: adityakonda04@gmail.com</p>
<p>Phone: 808039260</p>
</section>
<footer>
<p>© 2023 Aditya Konda. All rights reserved.</p>
</footer>
</body>
</html>
***************************************************************************************************
# CSS CODE
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: rgb(198, 209, 216);
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}
header h1 {
margin: 0;
}
#about1 {
text-align: center;
padding: 1px 0;
}
#about {
text-align: center;
padding: 20px 0;
}
#about img {
width: 90px;
border-radius: 30%;
}
#skills {
text-align: left;
padding: 10px 0;
}
#skills ul {
list-style: none;
}
#projects {
text-align: center;
padding: 20px 0;
}
.project {
margin-bottom: 20px;
}
.project img {
max-width: 100%;
border-radius: 5px;
}
#resume,
#contact {
text-align: center;
padding: 20px 0;
}
#resume a {
text-decoration: none;
color: #333;
border: 1px solid #333;
padding: 10px 20px;
border-radius: 5px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}
*******************************************************************************************************