-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
executable file
·34 lines (26 loc) · 1008 Bytes
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="./style/style.scss" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="./js/nav.js"></script>
</head>
<body>
<main data-router-wrapper>
<section data-router-view="about" class="about">
<div class="about-content">
<div class="about-presentation">
<h1>About Us</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
<img src="./images/note.png" alt="">
</div>
</section>
</main>
<script src="./js/index.js"></script>
</body>
</html>