-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
98 lines (82 loc) · 4.34 KB
/
home.html
File metadata and controls
98 lines (82 loc) · 4.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Playfair+Display:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Sirendema</title>
</head>
<body class="home-page">
<div class="home-main-content">
<div class="sidebar">
<h1 class="site-title">Sirendema</h1>
<ul class="nav-menu">
<li><a href="index.html">← Back</a></li>
<li><a href="#about">About</a></li>
<li><a href="#gallery-preview">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="copy-right"><p>© 2023 FayAlabri.</p>
<p> All rights reserved.</p></div>
</div>
<div class="home-content">
<section id="about" class="section">
<div class="about-content">
<img src="img/siren.jpg" alt="Artist's Portrait" class="profile-image">
<div class="about-text">
<h2>About Me</h2>
<p>Hello there! I'm an artist, a dreamer, and a lover of all things cottagecore. With my brush in hand, I paint serene scenes of rustic beauty and the simple joys of country living.</p>
<p>From blooming wildflowers to charming cottages nestled in the woods, my art captures the essence of the cottagecore lifestyle. Each stroke of my brush tells a story of tranquility, warmth, and connection with nature.</p>
<p>Join me in exploring the idyllic world of cottagecore through my art.</p>
</div>
</div>
</section>
<section id="gallery-preview" class="section">
<h2>My Art</h2>
<div class="gallery-preview-container">
<!-- Add gallery items here -->
<div class="gallery-item">
<img src="https://pbs.twimg.com/media/FzGV-bPWYAQqlTX?format=jpg&name=large" alt="Image 1">
</div>
<div class="gallery-item">
<img src="https://pbs.twimg.com/media/F1g8PxLWAAAXjnS?format=jpg&name=large" alt="Image 1">
</div>
<div class="gallery-item">
<img src="https://pbs.twimg.com/media/Fydp2cEXsAEIAKP?format=jpg&name=large" alt="Image 2">
</div>
<div class="gallery-item">
<img src="https://pbs.twimg.com/media/F4Ghnt_WUAATaH-?format=jpg&name=large" alt="Image 3">
</div>
<div class="gallery-item">
<img src="https://pbs.twimg.com/media/FxuJRrRWIAIPnrV?format=jpg&name=large" alt="Image 4">
</div>
<div class="gallery-item">
<img src="https://pbs.twimg.com/media/FwmAlZlWcAEGEep?format=jpg&name=large" alt="Image 5">
</div>
<div class="gallery-item">
<img src="https://pbs.twimg.com/media/FgvZF3nWQAEq5zZ?format=jpg&name=large" alt="Image 6">
</div>
<div class="gallery-item">
<img src="https://pbs.twimg.com/media/Fgf9-gMXgAEUKw4?format=jpg&name=large" alt="Image 7">
</div>
<div class="gallery-item">
<img src="https://pbs.twimg.com/media/FgaN5vwWIAEWI9W?format=jpg&name=large" alt="Image 7">
</div>
</div>
</section>
<section id="contact" class="section">
<h2>Contact Me</h2>
<div class="contact-info">
<p>Find more of my content and feel free to connect with me on social media:</p>
<ul>
<li><a href="https://twitter.com/sirendema" target="_blank" rel="noopener noreferrer">Twitter</a></li>
<li><a href="https://www.instagram.com/sirendema" target="_blank" rel="noopener noreferrer">Instagram</a></li>
<li><a href="https://www.tiktok.com/@sirenslife" target="_blank" rel="noopener noreferrer">TikTok</a></li>
</ul>
</div>
</section>
</div>
</div>
</body>
</html>