-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
169 lines (147 loc) · 4.41 KB
/
portfolio.html
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>sarath K's Portfolio</title>
<style>
</style>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User's Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Merriweather:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #F0F8FF;
color: #333333;
margin: 0;
padding: 0;
scroll-behavior: smooth;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #1E90FF;
color: #FFD700;
padding: 10px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
margin-top: 10px;
}
nav a {
margin: 0 20px;
color: #FFD700;
text-decoration: none;
}
section {
padding: 20px;
margin: 20px;
background-color: #FFFFFF;
border-radius: 10px;
}
.about img {
width: 150px;
border-radius: 50%;
margin: 20px auto;
display: block;
}
form {
display: flex;
flex-direction: column;
max-width: 300px;
margin: 0 auto;
}
input,
textarea {
margin: 10px 0;
padding: 5px;
border-radius: 5px;
border: 1px solid #333333;
}
button {
padding: 5px 10px;
background-color: #FF6347;
color: #FFFFFF;
border: none;
cursor: pointer;
}
footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #1E90FF;
color: #FFD700;
text-align: center;
padding: 10px 0;
}
</style>
</head>
<body>
<header>
<h1>User's Name</h1>
<nav>
<a href="#about">About</a>
<a href="#experience">Experience</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="about" class="about">
<h2>About Me</h2>
<img src="user-photo.jpg" alt="User Photo">
<p>Welcome to my portfolio! I'm a passionate individual with a background in computer science and a love for AI technology. Join me on my journey to success.</p>
</section>
<section id="experience" class="experience">
<h2>Experience</h2>
<p>Explore my professional experiences, educational background, and the companies I've had the pleasure of working for.</p>
</section>
<section id="projects" class="projects">
<h2>Projects</h2>
<div class="project">
<img src="project1.jpg" alt="Project 1">
<h3>Project 1</h3>
<p>Dive into the details of Project 1, including the technologies utilized and the impact it has made.</p>
<a href="#">View Project</a>
</div>
<div class="project">
<img src="project2.jpg" alt="Project 2">
<h3>Project 2</h3>
<p>Learn about Project 2, its unique features, and the innovative solutions it provides.</p>
<a href="#">View Project</a>
</div>
</section>
<section id="contact" class="contact">
<h2>Contact Me</h2>
<form>
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
<textarea placeholder="Message"></textarea>
<button type="submit">Submit</button>
</form>
<div>
<a href="#">Connect on LinkedIn</a>
<a href="#">Check out my GitHub</a>
</div>
</section>
<footer>
© User's Name | 2021
</footer>
</body>
</html>
<script>
</script>
</body>
</html>