-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (35 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home page | LinkTube</title>
<link rel="stylesheet" href="headerstyles.css">
<script src="https://kit.fontawesome.com/30be4e7313.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="header"></div>
<script>
// Load the header using JavaScript
fetch('header.html')
.then(response => response.text())
.then(data => {
document.getElementById('header').innerHTML = data;
});
</script>
<div class="text-box">
<div class="text-content">
"Unlock your potential with YouTube's treasure trove of free knowledge, and watch your skills soar."
</div>
</div>
<div class="search-box">
<div class="row">
<input type="text" id="input-box" placeholder="Search" autocomplete="off">
<button><i class="fa-solid fa-magnifying-glass"></i></button>
</div>
<div class="result-box">
</div>
</div>
<script src="searchbar.js"></script>
</body>
</html>