-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
109 lines (104 loc) · 3.02 KB
/
portfolio.html
File metadata and controls
109 lines (104 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sakshi Sharan's Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
}
.container {
padding: 20px;
}
.section-title {
font-size: 1.5em;
margin-bottom: 10px;
}
.hobbies, .projects {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.hobby, .project {
background-color: #fff;
padding: 20px;
margin: 10px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
width: 200px;
text-align: center;
}
.hobby img, .project img {
width: 100%;
border-radius: 8px;
}
.profile-image {
width: 150px;
border-radius: 50%;
margin: 20px auto;
}
</style>
</head>
<body>
<header>
<h1>Sakshi Sharan's Portfolio</h1>
</header>
<div class="container">
<div class="profile">
<img src="path_to_sakshi_sharan_picture.jpg" alt="Sakshi Sharan" class="profile-image">
<h2>Sakshi Sharan</h2>
</div>
<section class="hobbies">
<h2 class="section-title">Hobbies</h2>
<div class="hobby">
<h3>Singing</h3>
<img src="path_to_singing_image.jpg" alt="Singing">
</div>
<div class="hobby">
<h3>Dancing</h3>
<img src="path_to_dancing_image.jpg" alt="Dancing">
</div>
<div class="hobby">
<h3>Painting</h3>
<img src="path_to_painting_image.jpg" alt="Painting">
</div>
<div class="hobby">
<h3>Travelling</h3>
<img src="path_to_traveling_image.jpg" alt="Travelling">
</div>
</section>
<section class="projects">
<h2 class="section-title">Projects</h2>
<div class="project">
<h3>Project 1</h3>
<img src="path_to_project1_image.jpg" alt="Project 1">
<p>Description of Project 1.</p>
</div>
<div class="project">
<h3>Project 2</h3>
<img src="path_to_project2_image.jpg" alt="Project 2">
<p>Description of Project 2.</p>
</div>
<div class="project">
<h3>Project 3</h3>
<img src="path_to_project3_image.jpg" alt="Project 3">
<p>Description of Project 3.</p>
</div>
</section>
</div>
</body>
</html>