-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.23 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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=Montserrat:ital,wght@1,200&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="design.css">
<title>Full page Scroll effect</title>
</head>
<body>
<div class="container">
<section class="one">
<h1>first page</h1>
<div class="modal-bg">
<div class="modal">
<h3>Subscribe to our Newsletter:</h3>
<label for="email">Email:</label>
<input type="email" name="email">
<button>Subscribe</button>
<span class="modal-close">X</span>
</div>
</div>
</section>
<section class="two">
<h1>second page</h1>
</section>
<section class="three">
<h1>third page</h1>
</section>
<section class="four">
<h1>fourth page</h1>
</section>
<script src="script.js" defer></script>
</div>
</body>
</html>