-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexLinks2.html
More file actions
40 lines (39 loc) · 1.17 KB
/
Copy pathindexLinks2.html
File metadata and controls
40 lines (39 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Links</title>
<link rel="stylesheet" href="styleLinks2.css">
</head>
<body id="page-top">
<!-- Insert blocks here -->
<header class="header">
<h1>Mate Academy</h1>
<nav class="nav">
<a class="nav__link" href="#section-1">Section 1</a>
<a class="nav__link" href="#section-2">Section 2</a>
<a class="nav__link" href="#section-3">Section 3</a>
<a class="nav__link" href="#section-4">Section 4</a>
</nav>
</header>
<main class="main">
<section class="section" id="section-1">
<h2> Section 1 <h2>
<a href="#page-top">Go to top </a>
</section>
<section class="section" id="section-2">
<h2> Section 2 <h2>
<a href="#page-top">Go to top </a>
</section>
<section class="section" id="section-3">
<h2> Section 3 <h2>
<a href="#page-top">Go to top </a>
</section>
<section class="section" id="section-4">
<h2> Section 4 <h2>
<a href="#page-top">Go to top </a>
</section>
</main>
<footer>Mate academy</footer>
</body>
</html>