-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (28 loc) · 1.09 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>Hello, World!</title>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css">
<!-- import the webpage's javascript file -->
<script src="script.js" defer></script>
</head>
<body>
<h1>👋Good Morning!</h1>
<h2>How's your day?</h2>
<p>
Want to search something up? Try <a href="https://www.google.com/">Google</a>!
</p>
<p>
Pikachu says hi ⚡!
</p>
<img src = "https://cdn.glitch.com/4dd4640d-2622-4800-82f9-85a5163c4879%2Fpikachu.gif?v=1594057762624" alt = "Pikachu gif" width = "500em">
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
<script src="https://button.glitch.me/button.js" defer></script>
</body>
</html>