-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icon.ico">
<title>Crazy Balls</title>
<meta name="keywords" content="crazy, balls, HTML, CSS, animation, interaction">
<meta name="description" content="Animation and interaction project using HTML and CSS only.">
<meta name="author" content="TinF9">
<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=Bungee+Inline" rel="stylesheet">
</head>
<body>
<h1>Crazy Balls</h1>
<div class="container">
<p class="container__message">They get crazier on hover!</p>
<button type="button"><span>Stop</span></button>
<div class="sprite sprite__topLeft"><p><strong>H</strong></p></div>
<div class="sprite sprite__topRight"></div>
<div class="sprite sprite__bottomLeft"></div>
<div class="sprite sprite__bottomRight"></div>
<div class="sprite sprite__topCenter"></div>
<div class="sprite sprite__bottomCenter"></div>
<div class="middleLine"></div>
</div>
</body>
</html>