-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 1.76 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
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scroll</title>
<link rel="stylesheet" href="./fontawesome-free-5.12.0-web/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- main content -->
<div id="container">
<div class="fixed">
<div class="navigation">
<img src="logo.svg" alt="" class="logo">
<ul class="navBar">
<li class="navBarItem home"> <a class="link" href="#">Home</a> </li>
<li class="navBarItem about"> <a class="link" href="#aboutContent">About</a></li>
<li class="navBarItem serveice"><a class="link" href="#serviceContent"> Services</a> </li>
<li class="navBarItem tours"><a class="link" href="#feturedTours"> Tours</a></li>
</ul>
</div>
</div>
<div class="heading">
<header class="head">scroll project</header>
<p class="text">Lorem ipsum loreo qooepu wol elit. Placeat sequi,
numquam aut mollitia sint perferendis
tempora recusandae voluptate voluptatem officia!</p>
<button class="exploreTours"> <a href="#feturedTours"> explore tours </a></button>
</div>
</div>
<!-- about content -->
<div id="aboutContent">
<header>about <span>us</span></header>
</div>
<!-- services content -->
<div id="serviceContent">
<header>our <span>serveice</span></header>
</div>
<!-- fetured tours -->
<div id="feturedTours">
<header>fetured <span>tours</span></header>
</div>
<div class="showLink BtnContainer">
<i class="fas fa-arrow-up"> </i>
</div>
<footer>
<p class="copyRights">copyright © backroads travel tours company 2020. all rights reserved </p>
</footer>
<script src="app.js"></script>
</body>
</html>