-
-
Notifications
You must be signed in to change notification settings - Fork 581
/
Copy pathindex.html
40 lines (39 loc) · 1.26 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
<!-- Based on Hulu Webpage Clone | HTML & CSS by Brad Traversy (2021)
see: https://www.youtube.com/watch?v=9OVLaEjY-Rc -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Stream TV and Movies Live and Online | Hulu</title>
</head>
<body>
<header class="header">
<nav>
<ul>
<li>
<button class="login-btn">Log In</button>
</li>
</ul>
</nav>
<div class="header-content">
<h4>Try up to one month free</h4>
<img
src="https://github.com/bradtraversy/hulu-webpage-clone/blob/main/img/logo.png?raw=true"
alt="Hulu"
class="logo"
/>
<div class="header-text-1">Watch thousands of TV shows and movies.</div>
<div class="header-text-2">
HBO Max™, SHOWTIME®, CINEMAX® and STARZ® available as add-ons.
</div>
<button class="btn btn-cta">Start Your Free Trial</button>
<div class="legal-text">
Free trial for new & eligible returning subscribers only.
</div>
</div>
</header>
<script src="script.js"></script>
</body>
</html>