-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<title>Reddish Theme Landing Page</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<img src="pin.png" alt="Logo">
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="center-align">
<div class="logo-big">
<img src="world.png" alt="Big Logo">
</div>
<div class="search-box">
<input type="text" id="search-input" placeholder="Search">
<button type="submit" onclick="searchVideos()">Search</button>
</div>
<div id="video-results"></div>
</div>
</main>
<footer>
<div class="footer-content">
<p>© 2023 Your Company. All rights reserved.</p>
<nav>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/smooth-scroll/dist/smooth-scroll.min.js"></script>
<script src="script.js"></script>
</body>
</html>