-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (47 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home | Page Transision with Highway.js</title>
<link
href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style/style.scss" />
</head>
<body>
<nav>
<ul class="nav__list">
<li class="nav__item">
<a href="./index.html" class="nav__link is-active">Home</a>
</li>
<li class="nav__item">
<a href="./about.html" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="./contact.html" class="nav__link">Contact</a>
</li>
</ul>
</nav>
<main data-router-wrapper>
<section data-router-view="home" class="page page__wrapper">
<div class="page__content">
<div class="page__presentation">
<h1>Home page</h1>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Tempora
eum provident accusamus suscipit autem asperiores.
</p>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nemo,
at!
</p>
</div>
<img src="./images/home.svg" alt="home image" />
</div>
</section>
</main>
<script src="./js/main.js"></script>
</body>
</html>