-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.52 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
<!DOCTYPE html>
<html lang="es">
<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>Netflix Subscription Page</title>
<link rel="stylesheet" href="src/css/styles.css">
<link rel="shortcut icon" href="src/img/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="col-1">
<img src="src/img/logo.png" alt="Logo" class="logo">
<ul>
<li><img src="src/img/icon.png">Unlimited movies and shows.</li>
<li><img src="src/img/icon.png">Watch anywhere. Cancel anytime.</li>
<li><img src="src/img/icon.png">Watch on smart TVs, Playstation.</li>
<li><img src="src/img/icon.png">Stream unlimited movies & TV shows on your phone.</li>
</ul>
</div>
<div class="col-2">
<h2><img src="src/img/icon.png">Our plans</h2>
<form action="">
<label for="free">
<input type="radio" name="plans" id="free">
<span>FREE</span> ONE MONTH
</label>
<label for="paid">
<input type="radio" name="plans" id="paid">
<span>$15 <small>/month</small></span> NO LIMITS
</label>
<br>
<p>Your name</p>
<input type="text" name="" id="" placeholder="Enter your name">
<p>Email Address</p>
<input type="email" name="" id="" placeholder="Enter your email address">
<button type="submit">Subscribe</button>
</form>
</div>
</div>
</body>
</html>