forked from lzurch3r/HelloWorld
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (18 loc) · 645 Bytes
/
index.html
File metadata and controls
21 lines (18 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Hello World!</title>
<meta charset="UTF-8">
<meta name="description" content= "A basic Hello World program in HTML and JavaScript">
<link rel="stylesheet" href="stylesheet/hello.css">
</head>
<body>
<div id="hello_env">
<!--This is where "Hello World!" is written in 'hello.js'-->
</div>
<!--A quick little animation I made to add character-->
<span id="anim_gif_env"><img id="anim_gif" src="images/orangeExplosionLarge.gif" width="100%"></span>
<!--Links to a JS file in GitHub repo-->
<script src="js/index.js"></script>
</body>
</html>