forked from SanjanaRathish/7fifty2edibles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (43 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>Your Website</title>
<link rel="stylesheet" type="text/css" href="styles.css"> <!-- Link to your CSS stylesheet -->
</head>
<body>
<!-- App Bar -->
<div id="app-bar">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="ecommerce.html">E-Commerce</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
<div id="search-bar">
<input type="text" placeholder="Search">
<button type="submit">Search</button>
</div>
</div>
<section id="about-us">
<div id="about-text">
<h2>About Us</h2>
<div id="about-image">
<img src="about-image.jpg" alt="About Us Image">
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Nullam bibendum odio sit amet nunc fermentum, sed tincidunt ex mattis.
Integer vestibulum ante a ex blandit, id dictum nulla vehicula.
Suspendisse potenti.</p>
</div>
</section>
<!-- Rest of your homepage content -->
<section id="home">
<header>
<h1>Welcome to Your Website</h1>
<p>Your Tagline or a Brief Introduction</p>
</header>
<!-- ... (the rest of your content) ... -->
</section>
</body>
</html>