-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.67 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
<!DOCTYPE html>
<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>Document</title>
<link rel="stylesheet" href="./styles.css" />
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="flex">
<section class="sec-a">
<div class="container container-sec-a">
<p class="upp-title">mouthwateringly delicious</p>
<h1>Learn how to make <strong>the best BBQ ribs </strong>in town</h1>
<p class="down-title">join us for this live webinar</p>
</div>
</section>
<section class="sec-b">
<div class="container">
<h2 class="first-title">Become a BBQ master!</h2>
<p class="second-title">REGISTER TODAY</p>
<p class="main-text">
BBQ isn't just standing in front of your grill with it on full blast
and hoping for the best. It's an art! One way to speed up the
process is to learn from the best. You can do just that by signing
up for this free webinar!
</p>
<form action="">
<input type="text" class="name" placeholder="first name" />
<input type="email" class="email" placeholder="email" />
<input type="submit" class="submit" value="REGISTER" />
</form>
<p class="down-text">
We'll never share your information without your permission
</p>
</div>
</section>
</div>
</body>
</html>