-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (41 loc) · 2.52 KB
/
index.html
File metadata and controls
62 lines (41 loc) · 2.52 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
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>Barbie is More Than Being Barbie</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>
<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>
</ul>
</nav>
<main>
<!-- Barbie Movie gif -->
<div id = "parallax-1">
<img id = "Barbie" src="assets/barbie.gif" alt = "A gif of Margot Robbie or Barbie from the Barbie movie in Barbie Land waving hello to everyone in her pink car. The setting is surrounding in purple and pink buildings with a sky-blue sky and palm trees.">
<br>
<!-- home page description of the website's purpose, to spread awareness about the Barbie movie's impact on society and its importance -->
<p class = "pink">The Barbie movie is an outstanding piece of cinematography that has hit the screens at the right time and place. It's an impressive satirical work that tweens and older need to watch. Without relaying any spoilers of the movie, the premise is that the Barbies and the Kens are enjoying their utopia in Barbie Land until one day, Barbie (Margot Robbie) begins questioning the perfection Mattel created for young girls worldwide. Barbie becomes imperfect and needs to go to the real world to find the solution to changing her back to her perfect self. Unlike light-hearted humor viewers may think this movie possesses, Greta Gerwig uses satire to make people think of what the real world can look like when people push unpopular opinions to rule society. However, there is so much more to Barbie than the movie covers. Click on <strong>History</strong> to learn more about Barbie's influence on society and <strong>Hot Take</strong> to read my take on the Barbie movie and the future endeavors it could encourage.</p>
</div>
</main>
</body>
</html>