-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (73 loc) · 2.26 KB
/
index.html
File metadata and controls
74 lines (73 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- tailwind css -->
<link rel="stylesheet" href="public/style.css" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap" rel="stylesheet">
<title>My Website</title>
</head>
<body
style="
background-image: linear-gradient(
to bottom right,
#f247a3,
#d848a8,
#be4aaa,
#a24ba9,
#864ba5
);
"
class="h-screen"
>
<section id="navbar">
<div
class="bg-purple shadow-2xl flex flex-row inline-block lg:absolute lg:w-full"
>
<p class="text-white text-2xl p-2 font-bold w-full">Build Websites</p>
<div class="w-full justify-end flex flex-row">
<p class="text-white p-2 text-2xl mr-2 justify-items-end">gallery</p>
<p class="text-white p-2 text-2xl mr-2 justify-items-end">services</p>
<p class="text-white p-2 text-2xl mr-2 justify-items-end">contact</p>
</div>
</div>
</section>
<section id="pagedetails">
<div class="h-screen flex justify-center">
<div class="w-1/2 m-auto">
<img
src="public/assets/banner.svg"
class="w-1/2 mx-auto"
alt="our banner image"
srcset=""
/>
</div>
<div class="w-1/2 m-auto">
<p class="text-3xl font-bold text-center text-white">
We Build your dream website
</p>
<p class="text-3xl text-center text-white">Affordable</p>
<p class="text-3xl text-center text-white">No Hidden Charge</p>
<p class="text-3xl text-center text-white">
Proffessional yet Friendly
</p>
</div>
</div>
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-16 w-16 animate-bounce mx-auto -mt-32 text-white"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M19 9l-7 7-7-7"
/>
</svg>
</section>
</body>
</html>