-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (22 loc) · 909 Bytes
/
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parallax movvement on mouse move</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="word-container">
<h1 class="parallaxit">Parallax Effect</h1>
<p class="w1 parallaxit">Easy parallax with CSS Variables. </p>
<div class="btn-container parallaxit">
<a class="btn" href="https://www.youtube.com/channel/UC6CFdR2zAt0wTC8CPPhqvGw">My Github</a>
<a class="btn" href="https://www.youtube.com/channel/UC6CFdR2zAt0wTC8CPPhqvGw">My Youtube</a>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>