-
Notifications
You must be signed in to change notification settings - Fork 973
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.34 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.34 KB
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">
<!-- stylesheet -->
<link rel="stylesheet" href="style.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<title>Hacktoberfest</title>
</head>
<body>
<nav>
<div class="brandName">Hacktoberfest</div>
<div class="largeNav">
<a href="#" class="active">Home</a>
<a href="#">Services</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
<details role="navigation">
<summary></summary>
<a href="#">Home</a>
<a href="#">Services</a>
<a href="#">About</a>
<a href="#">Contact</a>
</details>
</nav>
<section>
<h1>Welcome to Hacktoberfest</h1>
</section>
<footer>
<p>Resize the screen to see the mobile navigation</p>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
</body>
</html>