-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.16 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
<html lang="en">
<head>
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,700,900&display=swap"
rel="stylesheet"
/>
<link href="https://cdn.jsdelivr.net/npm/normalize.css" rel="stylesheet" />
<link href="../base-styles.css" rel="stylesheet" />
<link href="index.css" rel="stylesheet" />
<script src="intersecion.js" type="text/javascript"></script>
<title>Stage Curtain Hero</title>
</head>
<body>
<header>
<h1 class="inspired-title">Stage Curtain Hero</h1>
<h2 class="inspired-credit">
Inspiration:
<cite class="inspired-credit__citation">
<a href="https://www.apple.com/">Apple</a>
</cite>
</h2>
</header>
<div class="inspired-container">
<div class="placeholder-content">Scroll down the page</div>
<div class="hero">
<div class="theatre" id="theatre">
<div class="theatre__curtain theatre__curtain--left"></div>
<div class="theatre__stage"></div>
<div class="theatre__curtain theatre__curtain--right"></div>
</div>
</div>
<div class="placeholder-content" />
</div>
</body>
</html>