-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 2.21 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Footer Example</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
<footer class="bg-[#659f8f] dark:bg-[#313131]">
<div class="container">
<footer class="bg-[#659f8f] dark:bg-[#313131]">
<div class="container px-6 py-12 mx-auto">
<div class="grid">
<div class="sm:col-span-2">
<h1 class="max-w-lg" >Subscribe.</h1>
<div class="flex">
<input id="email" type="text">
<button class="w-full px-6 py-2.5 bg-white">
Subscribe
</button>
</div>
</div>
<div>
<p class="text-[#313131]">Quick Link</p>
<div class="flex">
<a href="#">Home</a>
<a href="#">Who We Are</a>
<a href="#">Our Philosophy</a>
</div>
</div>
<div>
<p class="text-[#313131]">Technologies</p>
<div class="">
<a href="#">HTML</a>
<a href="#">CSS</a>
<a href="#">JavaScript</a>
</div>
</div>
</div>
<hr class="my-6 border-[#d86943]">
<div class="flex">
<a href="#">
<img class="w-auto h-7" src="https://codespace-assets.global.ssl.fastly.net/wp/assets/website/codespace-primary-logo-light.svg" alt="">
</a>
</div>
</footer>
</body>
</html>