-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (70 loc) · 3.36 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Aroma - Web</title>
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Maven+Pro:500" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="signup">
<div class="play">►</div>
<div class="signup-inner">
<div class="logo-container">
<img class="logo" src="images/aroma-logo_03.png" alt="logo"/>
</div>
<h1 style="font-size: 36px;">
<span class="light-gray">We are</span>
<span class="dark-gray">aroma</span>
</h1>
<p class="light-gray sub-heading"
>Welcom Back, Please login<br/>
to your account.</p>
<div class="signup-form">
<form>
<div class="controls">
<div class="input">
<label for="email">Email Address</label>
<input type="text" id="email" >
</div>
<div class="input">
<label for="password">Password</label>
<input type="text" id="password">
</div>
</div>
<div class="remember-me">
<input type="checkbox"> <span class="light-gray" >Remember me </span>
<a href="#" class="pull-right" > Forgot password</a>
</div>
<button class="button button-black">Login</button>
<button class="button button-gray">Sign up</button>
</form>
<div class="terms-and-conditions">
<p class="light-gray terms-and-conditions" >By signing up, you agree to Aroma's</p>
<p class="light-gray">
<a href="#">Terms and Conditions </a> & <a href="#">Privacy Policy</a>
</p>
</div>
</div>
</div>
</div>
<div class="slide-show">
<div class="menu">
<ul>
<li>ABOUT US</li>
<li>SHOWCASE</li>
<li>LETTERS</li>
<li>CONTACT</li>
<li>BLOG</li>
</ul>
</div>
<div class="slider-button-container">
<button class="slider-button" >PREVIOUS</button>
<button class="slider-button" >NEXT</button>
</div>
</div>
</div>
</body>
</html>