-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (76 loc) · 2.77 KB
/
index.html
File metadata and controls
76 lines (76 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ondeck</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<nav class="nav-bar">
<div class="Logo">
<span class="Logo-img"></span>
</div>
<ul class="menu">
<li><a href="#" id="Products">Products</a></li>
<li><a href="#">Challenges</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Other Links</a></li>
</ul>
<div class="features">
<a href="">Sign in</a>
<button class="btn-design">Try for free</button>
</div>
<div class="menu-bar"></div>
</nav>
<ul class="drop-down">
<li>
<img src="./Assets/Spense_Icon.svg" alt="Spense-icon">
<div>
<h4>Spense</h4>
<p>Spense is a landing page for writers.Great for practicing absolute positioning and flex layouts.</p>
</div>
</li>
<li>
<img src="./Assets/Fiber_Icon.svg" alt="Fiber-icon">
<div>
<h4>Fiber Landing Page</h4>
<p>An online portfolio generator.Great to practice flex/grid layouts,and absolute positioning.</p>
</div>
</li>
<li>
<img src="./Assets/Gradie_Icon.svg" alt="Gradie-icon">
<div>
<h4>Gradie SignUp Page</h4>
<p>Gradie is a Simple sign up page,great to practice centering layouts.</p>
</div>
</li>
<span class="close"></span>
</ul>
<main>
<div class="left">
<h1>Ondeck is your remote <span>conference Calling tool</span></h1>
<p>Ondeck is a service that allows you to create beautiful, online and encrypted vide calls for you and your remote team.</p>
<button class="btn-design">Try for free</button>
<div class="links">
<p>5.0 Rating based on review from:<span class="icon-1 p-span"></span>
<span class="icon-2 p-span"></span>
<span class="icon-3 p-span"></span></p>
</div>
</div>
<div class="right">
<div class="image"></div>
</div>
</main>
<footer>
<p>Trusted by 3+ miilion pages at companies like</p>
<div class="company">
<span style="background-image: url(./Assets/Netflix\ Logo.svg);"></span>
<span style="background-image: url(./Assets/Shopify\ Logo.svg);"></span>
<span style="background-image: url(./Assets/Spotify\ Logo.svg);"></span>
<span style="background-image: url(./Assets/Walmart\ Logo.svg);"></span>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>