-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
34 lines (30 loc) · 1.13 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
<html>
<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">
<link rel="stylesheet" href="./style/style.scss">
<title>Home Page</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.html">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>This is the Banwanage Company</h1>
<p>Proffessional and beautiful work produced here</p>
</div>
<img src="./images/web.svg" alt="home">
</div>
</section>
</main>
<script src="./js/main.js"></script>
</body>
</html>