-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignup.html
107 lines (106 loc) · 3.69 KB
/
signup.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
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<link
href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css"
rel="stylesheet"
/>
<!-- <link rel="stylesheet" href="style.css" /> -->
<link rel="icon" type="image/png" href="assets/webfonts/logo.png" />
<script type="text/javascript" src="script.js"></script>
<title>Sleeves7®</title>
<style>
body {
background: url(assets/webfonts/bg.jpg) fixed;
background-size: 100% auto;
background-repeat: round;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.title-font {
color: #efffef;
text-shadow: #ec4e4e 2px 2px;
position: relative;
}
.ml-3 {
text-shadow: #ec4e4e 3px 3px;
font-size: 65px;
color: #efffef;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.logo-img {
height: auto;
width: 70px;
}
.logo{
position: absolute;
margin-top: 12%;
margin-left: 5%;
}
.quote{
color: #efffef;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
</style>
</head>
<body>
<a
class="logo title-font flex font-medium items-center text-gray-900 mb-4 md:mb-0"
>
<img class = "logo-img" src="assets/webfonts/logo.png" alt="Sleeves7" />
<span class="ml-3 text-xl" id="title-font">Sleeves7®</span>
</a>
<br>
<br>
<br>
<br>
<br>
<section class="text-gray-600 body-font">
<div class="container px-5 py-24 mx-auto flex flex-wrap items-center">
<div class="lg:w-3/5 md:w-1/2 md:pr-16 lg:pr-0 pr-0">
<h1 class="title-font font-medium text-3xl text-gray-900">
High-quality premium T-shirt Collection at prices you wont imagine
</h1>
<p class="quote leading-relaxed mt-4">
"You can have anything you want in life if you dress for it." —Edith
Head
</p>
</div>
<div
class="lg:w-2/6 md:w-1/2 bg-gray-100 rounded-lg p-8 flex flex-col md:ml-auto w-full mt-10 md:mt-0"
>
<h2 class="text-gray-900 text-lg font-medium mb-5">Sign Up</h2>
<div class="relative mb-4">
<label for="email" class="leading-7 text-sm text-gray-600"
>Email</label
>
<input
type="text"
id="full-name"
name="full-name"
class="w-full bg-white rounded border border-gray-300 focus:border-red-500 focus:ring-2 focus:ring-red-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out"
/>
</div>
<div class="relative mb-4">
<label for="password" class="leading-7 text-sm text-gray-600"
>Password</label
>
<input
type="email"
id="email"
name="email"
class="w-full bg-white rounded border border-gray-300 focus:border-red-500 focus:ring-2 focus:ring-red-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out"
/>
</div>
<button
class="text-white bg-red-500 border-0 py-2 px-8 focus:outline-none hover:bg-red-600 rounded text-lg"
>
Sign Up
</button>
<p class="text-xs text-gray-500 mt-3">
By clicking Sign up you agree to the "Terms and Conditions"
</p>
</div>
</div>
</section>
</body>
</html>