-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.html
More file actions
31 lines (24 loc) · 814 Bytes
/
intro.html
File metadata and controls
31 lines (24 loc) · 814 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CineScope — Welcome</title>
<link rel="stylesheet" href="intro.css">
</head>
<body>
<section class="hero-section">
<h1 class="title">MovieHub</h1>
<p class="scroll-hint">Scroll Down ↓</p>
</section>
<section class="character-section">
<img src="img/up.png" class="char char-left hidden">
<img src="img/character2.png" class="char char-right hidden">
<img src="img/character3.png" class="char char-left hidden">
</section>
<section class="bottom-section">
<a href="index.html" class="start-btn">Get Started</a>
</section>
<script src="intro.js"></script>
</body>
</html>