-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.71 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
<!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">
<title>Assignment 01</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<div class="container flex">
<div class="flex-48 intro-text">
<h1 class="heading">Learn to code by watching other.</h1>
<P class="text">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Suscipit aliquam soluta quidem! Magni nam veritatis ratione assumenda minima. </P>
</div>
<div class="flex-48">
<a class="btn btn-primary" href="#">
<strong>Try it free 7 days</strong>
then $20/month, thereafter
</a>
<form action="">
<fieldset>
<input class="form-control" type="text" placeholder="first name" required/>
<input class="form-control" type="text" placeholder="second name" required />
<input class="form-control" type="email" placeholder="email-address" required/>
<input class="form-control" type="password" placeholder="password" required/>
<input class="btn btn-secondary" type="CLAIM YOUR FREE TRAIL" placeholder="CLAIM YOUR FREE TRAIL" />
<P>
By clicking the button you are agreeing to our <a href="#">Terms and Conditions</a>
</P>
</fieldset>
</form>
</div>
</div>
</main>
</body>
</html>