-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
111 lines (98 loc) · 4.51 KB
/
sample.html
File metadata and controls
111 lines (98 loc) · 4.51 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/main/main.css">
<link rel="stylesheet" href="./styles/header/header.css">
<link rel="stylesheet" href="./styles/footer/footer.css">
<link rel="stylesheet" href="./styles/sample/sample.css">
<title>Scoot</title>
</head>
<body>
<!-- HEADER -->
<header class="header">
<div class="header__container section">
<div class="header-links__wrapper">
<div class="header__logo">
<img src="./assets/logo.svg" alt="">
</div>
<div class="header__links">
<li class="header-links__items"><a href="/">About</a></li>
<li class="header-links__items"><a href="/">Location</a></li>
<li class="header-links__items"><a href="/">Careers</a></li>
</div>
<div class="header__icon">
<img src="./assets/icons/hamburger.svg" alt="">
</div>
</div>
<div class="header__cta">
<button class="button">
<a href="/">Get Scootin</a>
</button>
</div>
</div>
</header>
<!-- FACTS -->
<section class="facts">
<div class="facts__container">
<div class="facts__headings">
<h3>Facts</h3>
</div>
<div class="facts__contents">
<p class="first">Lorem ipsum dolor sit amet consectetur adipisicing elit. Veritatis quaerat totam, ducimus a tenetur repudiandae aspernatur, eius, quidem incidunt deserunt sed voluptates! Nostrum facilis illum, architecto harum aut quis perspiciatis!</p>
<p class="second">Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet illum eos laborum quam ut vel numquam alias soluta officiis illo nostrum ipsum, corporis, distinctio tempora, perferendis reiciendis? Consequuntur, dignissimos perferendis?</p>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="footer">
<div class="footer__container">
<div class="footer-main">
<h2 class="white">Sign up and Scoot off today</h2>
<div class="footer-cta">
<div class="app-store">
<div class="icon">
<a href="/"><img src="./assets/icons/app-store.svg" alt=""></a>
</div>
</div>
<div class="google-play">
<div class="icon">
<a href=""><img src="./assets/icons/google-play.svg" alt=""></a>
</div>
</div>
</div>
<img class="circle" src="./assets/patterns/semi-circles.svg" alt="">
</div>
</div>
<div class="footer-socials__container">
<div class="footer-links">
<div class="footer-links__wrapper">
<div class="footer-logo">
<a href="/"><img src="./assets/logo-white.svg" alt=""></a>
</div>
<div class="footer-links__item">
<li class="footer-links__items">
<a href="/">About</a>
</li>
<li class="footer-links__items">
<a href="/">Location</a>
</li>
<li class="footer-links__items">
<a href="/">Careers</a>
</li>
</div>
</div>
<div class="footer-socials">
<a href="/"><img src="./assets/icons/facebook.svg" alt=""></a>
<a href="/"><img src="./assets/icons/twitter.svg" alt=""></a>
<a href="/"><img src="./assets/icons/instagram.svg" alt=""></a>
</div>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="./js/header.js"></script>
</body>
</html>