-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (82 loc) · 3.65 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Homepage</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<!-- Bootstrap CDN-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<!-- NAVBAR LINK -->
<nav class="navbar navbar-expand-lg rounded" aria-label="Thirteenth navbar example">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarsExample11" aria-controls="navbarsExample11" aria-expanded="true" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse d-lg-flex collapse show" id="navbarsExample11" >
<a class="navbar-brand col-lg-3 me-0" href="#">
<img src="./previews/alarado-icon-homepage.svg">
</a>
<ul class="navbar-nav col-lg-6 justify-content-lg-center">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#">Product</a>
</li>
<li class="nav-item">
<a class="nav-link " >Resource</a>
</li>
<li class="nav-item">
<a class="nav-link " aria-disabled="true">Contact</a>
</li>
</ul>
<div class="d-lg-flex col-lg-3 justify-content-lg-end">
<div>
<input type="checkbox" class="checkbox" id="checkbox">
<label for="checkbox" class="checkbox-label">
<i class="fas fa-moon">
<img src="./previews/Moon_fill.svg">
</i>
<i class="fas fa-sun"></i>
<span class="ball"></span>
</label>
</div>
</div>
</div>
</div>
</nav>
<div class='text-container'>
<div class="small-text">
😎 SIMPLE WAY TO COMMUNICATE
</div>
<div class="header-text">
Actions for Accessibility in Design
</div>
<div class="sub-text">
The fastest way to build and deploy websites with resusable components.
</div>
<div class="buttons">
<button type="button" class="btn btn-primary get-started">GET STARTED</button>
<a class="button-two"> Get a Live Demo </a>
</div>
<div class="tick-points">
<div class="first-pt">
<img src="./previews/Done_ring_round_fill.svg">
No credit card required
</div>
<div class="second-pt">
<img src="./previews/Done_ring_round_fill.svg">
No software to install
</div>
</div>
</div>
<div class="img">
<img class="homepage-img" src="./previews/hero-image-simple-homepage.png">
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>