-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhot_take.html
More file actions
58 lines (42 loc) · 1.75 KB
/
hot_take.html
File metadata and controls
58 lines (42 loc) · 1.75 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Hot Take</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- link the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- link the webpage's JavaScript file -->
<script src="/script.js" defer></script>
</head>
<body>
<body>
<!-- header for the website, with the Barbie movie logo as a picture and a pink background -->
<header>
<br>
<img id = "barbieTitle" src="assets/Barbie.jpg" alt = "A black background with the title Barbie in light pink outlined in hot pink">
</header>
<!-- navigation bar for home or index.html, history.html, and hot_take.html -->
<nav>
<ul>
<li>
<a href = "index.html">Home</a>
</li>
<li>
<a href = "history.html">History</a>
</li>
<li>
<a href = "hot_take.html">Hot Take</a>
</li>
</ul>
</nav>
<div id = "parallax-10">
<main>
<p id = "link" class = "pink"> Mobile users should click on this <a href = "https://docs.google.com/document/d/e/2PACX-1vTwf8GQ5EJYajn7xZ3NVe2BOTKv8_IWh_pPc9FWMtFCxRng3hD75RfS42vgOUOTFa84IQ5J7JjkS7W3/pub" target="_blank" rel="noopener noreferrer">link</a> to read my hot take on the movie in a new tab.</p>
<!-- Google Doc Analysis of Barbie Movie -->
<iframe width="800"height ="1000" src="https://docs.google.com/document/d/e/2PACX-1vTwf8GQ5EJYajn7xZ3NVe2BOTKv8_IWh_pPc9FWMtFCxRng3hD75RfS42vgOUOTFa84IQ5J7JjkS7W3/pub?embedded=true" target="_blank" rel="noopener noreferrer"></iframe>
</main>
</div>
</body>
</html>