-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CSS Transitions Study</title>
<meta name="CSS Transitions Study" content="A study of CSS transitions">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<script src="index.js" defer></script>
</head>
<body>
<header>
<div class="jumbotron">
<h1 class="jumbotron-title">Welcome to <span class="accent-text">Transition</span> Study</h1>
<p class="jumbotron-subtitle">When you scroll down, you'll see a picture of your best friend and a background that changes color!</p>
</div>
</header>
<section>
<div class="page2">
<h1>Howdy-do!</h1>
<p>If this section turned white, the study worked!</p>
<p>Scroll up to see the background change back again</p>
</div>
<img src="./img/greydog.jpeg" alt="">
</section>
</body>
</html>