-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (85 loc) · 3.45 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
<!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="app.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<title>Document</title>
</head>
<body>
<div class="bg">
<nav class="nav">
<img src="assets/Logo.svg" alt="" class="logo" />
<button class="dropdown-btn">
<img src="assets/Hamburger Menu.svg" alt="" />
</button>
<div class="expanded-nav">
<button class="dropdown-x-btn">
<img class="x" src="assets/x-symbol.svg" alt="" />
</button>
<button>
<img
src="assets/Search Icon.svg"
alt=""
class="search"
/>
</button>
<a href="#" class="sign-in">Sign in</a>
<button class="top-btn get-started-btn">
<span class="get-started-btn-bold">Get Started</span> -
it's free
</button>
</div>
</nav>
<section class="top">
<h1 class="top-title">Gorgeous Code Snippets</h1>
<p class="top-info">
With Snipper, create fully customizable code snippets in a
matter of seconds right from your browser.
</p>
<button class="top-btn get-started-btn">
<span class="get-started-btn-bold">Get Started</span> - it's
free
</button>
<p class="top-payment">No credit card required.</p>
<img class="top-image" src="assets/Snippet Image.png" alt="" />
</section>
</div>
<section class="bottom">
<img
src="assets/Customizable Image.png"
alt=""
class="bottom-image"
/>
<div class="bottom-text">
<h2 class="bottom-title">
A fully customizable code snippet editor
</h2>
<p class="bottom-info">
Fully customize the color scheme of your code snippet, or
use our own premade color schemes. Export your code snippets
in JPG, PDF, PNG, or any of the other 10+ common extensions.
</p>
<button class="bottom-btn get-started-btn">
<span class="get-started-btn-bold">Get Started</span> - it's
free
</button>
</div>
</section>
<footer class="footer">
<img class="logo footer-logo" src="assets/Logo.svg" alt="" />
<div class="footer-links">
<a href="#">Terms and Conditions</a>
<a href="#">Privacy Policy</a>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>