-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (51 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Home</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
</head>
<body>
<div class="wrapper">
<nav>
<input type="checkbox" id="show-search">
<input type="checkbox" id="show-menu">
<label for="show-menu" class="menu-icon"><i class="fas fa-bars"></i></label>
<div class="content">
<div class="logo"><a href="#home">TMC SPORTS</a></div>
<ul class="menu">
<li><a href="#home">Home</a></li>
<li><a href="#football">Football</a></li>
<li><a href="#cricket">Cricket</a></li>
<li><a href="#tennis">Tennis</a></li>
<li><a href="#rugby">Rugby</a></li>
<li><a href="#contactus">Contact Us</a></li>
</li>
</ul>
</li>
</ul>
</div>
<label for="show-search" class="search-icon"><i class="fas fa-search"></i></label>
<form action="#" class="search-box">
<input type="text" placeholder="Type Something to Search..." required>
<button type="submit" class="go-icon"><i class="fas fa-long-arrow-alt-right"></i></button>
</form>
</nav>
</div>
<!-- Home Page content -->
<section id="home"><h1>Home</h1></section>
<!-- Football Page content -->
<section id="football"><h1>Football</h1></section>
<!-- Cricket Page content -->
<section id="cricket"><h1>Cricket</h1></section>
<!-- Tennis Page content -->
<section id="tennis"><h1>Tennis</h1></section>
<!-- Rugby Page content -->
<section id="rugby"><h1>Rugby</h1></section>
<!-- Contact Us Page content -->
<section id="contactus"><h1>Contact Us</h1></section>
</body>
</html>