-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./style/style.scss" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home</title>
</head>
<body>
<nav>
<ul class="nav-list">
<li><a class="nav-links" href="./index.html">Home</a></li>
<li><a class="nav-links" href="./about.html">About</a></li>
<li><a class="nav-links" href="#">Contact</a></li>
</ul>
</nav>
<main data-router-wrapper>
<section data-router-view="home" class="home">
<div class="home-content">
<div class="home-presentation">
<h1>Jhumpa Lahiri</h1>
<p>
That's the thing about books. They let you travel without moving
your feet.
</p>
</div>
<img src="./images/undraw_book_reading_kx9s.svg" alt="home" />
</div>
</section>
</main>
<script src="./js/index.js"></script>
</body>
</html>