forked from valfragier16/JavaScript-DOM
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathabout.html
More file actions
27 lines (23 loc) · 884 Bytes
/
about.html
File metadata and controls
27 lines (23 loc) · 884 Bytes
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
<!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.0">
<title>_About Me_</title>
</head>
<body>
<span id="spanId">
<ul id="aboutList" >
<li id="nickname">Nickname: booboo</li>
<li id="favorites">Favorites: music, pizza, The Office</li>
<li id="hometown">Hometown: Wilmington</li>
<li id="random">Random Fact: Black is my favorite color.</li>
</ul>
</span>
<script src="http://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s="
crossorigin="anonymous"></script>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> -->
<script src="JS/main.js"></script>
</body>
</html>