forked from hafizip00/hacktoberfest_2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (58 loc) · 2.73 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
<!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="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<title>Document</title>
</head>
<body class="min-h-screen">
<header>
<section class="header-title-line">
<h2>Acme.co</h2>
<button class="menu-button">
<input type="text" name="menu-button" placeholder="click here">
<div class="menu-icon"></div>
</button>
</section>
<style>
.menu-button{
background-color:yellow
}
</style>
<nav>
<ul>
<li><a href="products.html">Products</a></li>
<li><a href="#">Forum</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Services </a><li>
</ul>
</nav>
</header>
<figure>
<img src="https://images.unsplash.com/photo-1453728013993-6d66e9c9123a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8Zm9jdXN8ZW58MHx8MHx8&w=1000&q =80" alt="Pro Shot" width="550px" height="300px">
<figcaption>Sharp Photography Skill</figcaption>
</figure>
<div class="grid gap-4 grid-cols-3 grid-rows-[100px_minmax(100px,_1fr)_auto] bg-gradient-to-r from-green-200">
<div class="bg-red-500">One</div>
<div class="bg-blue-500">Two</div>
<div class="bg-green-500">Three</div>
<div class="bg-pink-500">Four</div>
<div class="bg-yellow-500">Five</div>
<div class="bg-sky-500">Six</div>
</div>
<section class="p-5 flex flex-wrap justify-evenly items-center bg-gradient-to-r from-indigo-500">
<div class="w-24 h-24 bg-orange-200 decoration-black flex items-center justify-center">Box 1</div>
<div class="w-24 h-24 bg-orange-200 decoration-black flex items-center justify-center">Box 2</div>
<div class="w-24 h-24 bg-orange-200 decoration-black flex items-center justify-center">Box 3</div>
</section>
<section class="flex bg-purple-500 gap-16 justify-center items-center p-1 text-lg">
<a class="text-white font-bold hover:text-yellow-500 hover:underline font-mono" href="index.html" rel="noopener noreferrer">Home</a>
<a class="text-white font-bold hover:text-yellow-500 hover:underline font-mono" href="https://github.com/hafizip00/hacktoberfest_2022" rel="noopener noreferrer">Github</a>
<a class="text-white font-bold hover:text-yellow-500 hover:underline font-mono" href="https://github.com/hafizip00/hacktoberfest_2022/issues" rel="noopener noreferrer">Any Issues?</a>
</section>
</body>
</html>