-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 1.6 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Jerry's HTML Playground</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<!-- fonts setting from "Google Fonts" -->
<link href="https://fonts.googleapis.com/css?family=Gugi" rel="stylesheet">
<!-- href connects to the css -->
<link rel="stylesheet" href="stylesheets/index.css">
</head>
<body class="font">
<div class="setbg">
<h1 class="main-title">Jerry's HTML playground</h1>
<h2 class="weather"><a href="weather.html">Weather API</a></h2>
</div>
<p style="text-align:center">click on Jerry to make bigger</p>
<div class="imagejerry">
<div class="jerry big" data-target>
<img src="images/jerry.png" alt="Description of image" title="title of jerry">
</div>
<div class="jerry" data-target>
<img src="images/jerry.png" alt="Description of image" title="title of jerry">
</div>
<div class="jerry" data-target>
<img src="images/jerry.png" alt="Description of image" title="title of jerry">
</div>
</div>
<p>jerry<span>ing</span>.</p>
<ul>
<li>l1*1</li>
<li>l1*2</li>
</ul>
<div class="list">
<p>list without bullet points</p>
<ul>
<li>l1*1</li>
<li>l1*2</li>
</ul>
</div>
<script src="scripts/index.js">
</script>
</body>
</html>