-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (122 loc) · 4.45 KB
/
index.html
File metadata and controls
131 lines (122 loc) · 4.45 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!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" />
<title>SAWO HTML SAMPLE APP</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="assets/index.css" />
</head>
<body>
<div class="landingMain">
<header>
<div class="container">
<nav
class="nav-m nav navbar navbar-expand-lg navbar-light primary-menu"
>
<a href="/" class="navbar-brand">
<img class="navbar-logo" src="assets/logo.jpg" alt="Logo" />
</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
onclick="onToggle()"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ml-auto d-flex justify-content-between">
<span class="d-flex">
<a href="/" class="nav-link active styling__nav__link">
Home
</a>
<a href="/" class="nav-link styling__nav__link"> Pricing </a>
<a href="/" class="nav-link styling__nav__link"> Docs </a>
<a href="/" class="nav-link styling__nav__link">
Resources
</a>
<a href="/" class="nav-link styling__nav__link">
Contact Us
</a>
</span>
<span>
<a href="/login.html" class="btn btn-warning">
Login <i class="fa fa-sign-in" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</nav>
</div>
</header>
<main>
<div class="heading">
<h1>Product Headline</h1>
<button class="btn btn-lg btn-warning mt-3 cta">
<span>Call To Action</span>
</button>
</div>
<div class="feature-cards row">
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="card mb-4 mx-auto">
<div class="card-body">
<h5 class="card-title">Feature 1</h5>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<a href="/" class="btn btn-warning"> Go somewhere </a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="card mb-4 mx-auto">
<div class="card-body">
<h5 class="card-title">Feature 2</h5>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<a href="/" class="btn btn-warning"> Go somewhere </a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="card mb-4 mx-auto">
<div class="card-body">
<h5 class="card-title">Feature 3</h5>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<a href="/" class="btn btn-warning"> Go somewhere </a>
</div>
</div>
</div>
</div>
</main>
<footer />
</div>
<script>
function onToggle() {
location.href = "/login.html";
}
</script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj"
crossorigin="anonymous"
></script>
</body>
</html>