forked from eeshsaxena/Project-X
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (84 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project X</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="navbar">
<a href="#home" id="home-link">Home</a>
<a href="./about.html">About</a>
<a href="#blog" id="blog-link">Blog</a>
<a href="#contact" id="contact-link">Contact</a>
</div>
<div class="header" id="home">
<h1>Project X</h1>
<p>Your gateway to thoughts and tales.</p>
</div>
<div class="main-content" id="blog">
<div class="content">
<img src="image1.jpg" alt="Description of image 1" />
<div>
<h2>Latest Post 1</h2>
<p>Discover new perspectives in my latest blog post...</p>
<h3>About This Post</h3>
<p>In this post, I delve into...</p>
</div>
</div>
<div class="content">
<img src="image2.jpg" alt="Description of image 2" />
<div>
<h2>Latest Post 2</h2>
<p>Join me as I explore fascinating topics...</p>
<h3>About This Post</h3>
<p>This article discusses...</p>
</div>
</div>
<div class="content">
<img src="image3.jpg" alt="Description of image 3" />
<div>
<h2>Latest Post 3</h2>
<p>Insights and reflections from my recent experiences...</p>
<h3>About This Post</h3>
<p>Here, I share...</p>
</div>
</div>
<div class="content">
<img src="image4.jpg" alt="Description of image 4" />
<div>
<h2>Latest Post 4</h2>
<p>Engaging stories that inspire and entertain...</p>
<h3>About This Post</h3>
<p>This piece focuses on...</p>
</div>
</div>
<div class="content">
<img src="image4.jpg" alt="Description of image 4" />
<div>
<h2>Latest Post 4</h2>
<p>Engaging stories that inspire and entertain...</p>
<h3>About This Post</h3>
<p>This piece focuses on...</p>
</div>
</div>
</div>
<div id="contact">
<div
class="visme_d"
data-title="Contact Form"
data-url="4d6yepek-contact-form"
data-domain="forms"
data-full-page="false"
data-min-height="500px"
data-form-id="96782"
></div>
<script src="https://static-bundles.visme.co/forms/vismeforms-embed.js"></script>
</div>
<div class="footer">
<p>© 2024 Whimsical Writings</p>
</div>
<script src="script.js"></script>
</body>
</html>