-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (133 loc) · 4.61 KB
/
index.html
File metadata and controls
139 lines (133 loc) · 4.61 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
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dreamspace</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- frst sec -->
<header class="header">
<div class="container">
<div>
<a href="#">Home</a>
<a href="#">Projects</a>
<a href="#">About</a>
</div>
<div class="logo">DREAMSPACE</div>
<div> <a> Contact </a></div>
</div>
</header>
<!-- Snd SEC-->
<section class="hero">
<h1>STEP INTO MY DREAM</h1>
<img class="dreamy" src="images/landscape.png" alt="Dreamy surreal landscape">
</section>
<!-- Project-->
<section class="projects">
<div class="project-grid">
<div class="project">
<img src="images/p1.png" alt="Surreal Project 1">
<div class="project-info">
<p>Surreal Project 1</p>
<p>Art Installation</p>
</div>
</div>
<div class="project">
<img src="images/p2.png" alt="Surreal Project 2">
<div class="project-info">
<p>Surreal Project 2</p>
<p>Digital Art</p>
</div>
</div>
<div class="project">
<img src="images/p3.png" alt="Surreal Project 3">
<div class="project-info">
<p>Surreal Project 3</p>
<p>Photography</p>
</div>
</div>
<div class="project">
<img src="images/p4.png" alt="Surreal Project 4">
<div class="project-info">
<p>Surreal Project 4</p>
<p>Sculpture</p>
</div>
</div>
<div class="project">
<img src="images/p5.png" alt="Surreal Project 5">
<div class="project-info">
<p>Surreal Project 5</p>
<p>Mixed Media</p>
</div>
</div>
<div class="project">
<img src="images/p6.png" alt="Surreal Project 6">
<div class="project-info">
<p>Surreal Project 6</p>
<p>Virtual Reality</p>
</div>
</div>
<div class="project">
<img src="images/p7.png" alt="Surreal Project 7">
<div class="project-info">
<p>Surreal Project 7</p>
<p>Film</p>
</div>
</div>
<div class="project">
<img src="images/p8.png" alt="Surreal Project 8">
<div class="project-info">
<p>Surreal Project 8</p>
<p>Performance Art</p>
</div>
</div>
<div class="project">
<img src="images/p9.png" alt="Surreal Project 9">
<div class="project-info">
<p>Surreal Project 9</p>
<p>Interactive Installation</p>
</div>
</div>
</div>
</section>
<!-- about-->
<section class="about">
<div class="about-content">
<h2>SURREAL ART</h2>
<p>Explore the dreamlike landscapes and surreal juxtapositions in my latest projects.</p>
<br>
<br>
<button class="view-more-btn">View More</button>
</div>
<img src="images/surrealart.png" alt="Surreal Art" class="about-image">
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-top">
<p class="social">Connect with me on social media</p>
<form class="subscribe-form">
<input type="email" placeholder="Your email">
<button class="button" type="submit">Subscribe</button>
</form>
<br>
<div class="social-links">
<a href="#"><img class="jpg" src="images/fb.png" alt="Facebook"></a>
<a href="#"><img class="jpg" src="images/insta.png" alt="Instagram"></a>
<a href="#"><img class="jpg" src="images/twitter.png" alt="Twitter"></a>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="footer-bottom">
<p>© 2023 DREAMSPACE</p>
<button class="footer-contact-btn">Contact Me</button>
</div>
</footer>
</body>
</html>