-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarvel.html
More file actions
56 lines (47 loc) · 1.61 KB
/
Copy pathmarvel.html
File metadata and controls
56 lines (47 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hero Reel — My Marvel Diary</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&family=Orbitron:wght@500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="marvel.css">
</head>
<body>
<section class="Marvel-diary">
<div class="frame">
<div class="eye">
EXPLORE THE MULTIVERSE OF
</div>
<h1>MARVEL LEGENDS</h1>
<p class="sub">
A running log of the movies I keep coming back to —
one hero, one universe at a time.
</p>
</div>
</section>
<section class="movies">
<!-- New Wrapper -->
<div class="slider">
<!-- Keep same class and id -->
<div class="stage" id="movieStage">
<!-- JS will generate movie cards here -->
</div>
</div>
<div class="controls">
<div class="arrow" id="prevBtn">
<img src="./image/leftarrow.png" alt="Previous">
</div>
<div class="dots" id="dots"></div>
<div class="arrow" id="nextBtn">
<img src="./image/rightarrow.png" alt="Next">
</div>
</div>
</section>
<script src="marvel.js"></script>
</body>
</html>