-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (137 loc) · 3.85 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sheida's Personal Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
header {
background-color: #fff;
padding: 20px;
text-align: center;
border-bottom: 1px solid #ddd;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
header p {
margin: 0;
font-size: 1.2em;
color: #777;
}
section {
padding: 20px;
}
.container {
max-width: 900px;
margin: 0 auto;
}
h2 {
font-size: 2em;
margin-bottom: 10px;
}
.grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.grid-item {
flex: 1 1 calc(33.333% - 20px);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 5px;
overflow: hidden;
background-color: #fff;
}
.grid-item img {
width: 100%;
height: auto;
}
.grid-item p {
padding: 10px;
}
footer {
background-color: #fff;
text-align: center;
padding: 10px;
border-top: 1px solid #ddd;
}
</style>
</head>
<body>
<header>
<h1>Sheida</h1>
<p>“Lover” in Persian</p>
</header>
<section class="container">
<h2>Open Questions</h2>
<p>Here are some open questions I like to ponder:</p>
<ul>
<li>What does it mean to live a fulfilling life?</li>
<li>How can art influence society positively?</li>
<li>What are the limits of human creativity?</li>
</ul>
</section>
<section class="container">
<h2>My Singings</h2>
<div class="grid">
<div class="grid-item">
<img src="singing1.jpg" alt="Singing Performance 1">
<p>Performance at XYZ Event</p>
</div>
<div class="grid-item">
<img src="singing2.jpg" alt="Singing Performance 2">
<p>Live at ABC Concert</p>
</div>
<div class="grid-item">
<img src="singing3.jpg" alt="Singing Performance 3">
<p>Recording Session</p>
</div>
</div>
</section>
<section class="container">
<h2>My Paintings</h2>
<div class="grid">
<div class="grid-item">
<img src="painting1.jpg" alt="Painting 1">
<p>"Abstract Dreams" - 2021</p>
</div>
<div class="grid-item">
<img src="painting2.jpg" alt="Painting 2">
<p>"Nature's Whisper" - 2022</p>
</div>
<div class="grid-item">
<img src="painting3.jpg" alt="Painting 3">
<p>"City Lights" - 2023</p>
</div>
</div>
</section>
<section class="container">
<h2>My Plants</h2>
<div class="grid">
<div class="grid-item">
<img src="plant1.jpg" alt="Plant 1">
<p>Peace Lily</p>
</div>
<div class="grid-item">
<img src="plant2.jpg" alt="Plant 2">
<p>Succulent Collection</p>
</div>
<div class="grid-item">
<img src="plant3.jpg" alt="Plant 3">
<p>Fiddle Leaf Fig</p>
</div>
</div>
</section>
<footer>
<p>© 2024 Sheida</p>
</footer>
</body>
</html>