-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (99 loc) · 3.55 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
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Snipper</title>
</head>
<body>
<header class="bg-[url('./images/background.png')] pt-3.2">
<div class="max-w-6xl mx-auto px-2.4">
<nav class="flex justify-between items-center">
<img src="./images/logo.svg" alt="logo" /><img
class="cursor-pointer md:hidden"
src="./images/hamburger.svg"
alt="hamburger"
/>
<div class="hidden md:flex items-center gap-1.2">
<img
class="cursor-pointer"
src="./images/search-icon.svg"
alt="search icon"
/>
<ul>
<li><a href="#">Sign in</a></li>
</ul>
<button
class="bg-stone-950 rounded-md px-2.4 py-1.6 justify-self-center"
>
<span class="text-white">Get started</span>
<span class="text-stone-400">- it's free</span>
</button>
</div>
</nav>
<div class="flex flex-col md:items-center mt-3.2 max-w-xl mx-auto">
<h1 class="font-bold text-4.4 text-center">Gorgeous Code Snippets</h1>
<p class="text-center text-stone-800 mt-1.6">
With Snipper, create fully customizable code snippets in matter of
seconds right from your browser.
</p>
<button class="bg-stone-950 rounded-md py-1.6 md:px-1.6 mt-1.6">
<span class="text-white">Get started</span>
<span class="text-stone-400">- it's free</span>
</button>
<p class="text-stone-800 text-center mt-1.6">
No credit card required
</p>
</div>
<img
class="mt-3.2"
src="./images/snippet-img.png"
alt="snippet image"
/>
</div>
</header>
<section class="py-3.2">
<div
class="grid grid-cols-1 md:grid-cols-2 gap-3.2 max-w-6xl mx-auto px-2.4"
>
<img
class="md:col-start-2"
src="./images/customizable-img.png"
alt=""
/>
<div class="md:col-start-1 md:row-start-1 md:self-center">
<h2 class="font-bold text-3">
A fully customizable code snippet editor
</h2>
<p class="text-stone-800">
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="bg-stone-950 rounded-md py-1.6 px-1.6 mt-1.6">
<span class="text-white">Get started</span>
<span class="text-stone-400">- it's free</span>
</button>
</div>
</div>
</section>
<footer class="py-3.2">
<div
class="flex flex-col gap-1.6 md:flex-row md:justify-between md:items-center max-w-6xl mx-auto px-2.4"
>
<img class="w-[150px]" src="./images/logo.svg" alt="logo" />
<ul class="flex gap-1.2">
<li><a href="#">Terms and Conditions</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
</footer>
</body>
</html>