-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.13 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
<!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>Hello, DOM</title>
<!-- ADD YOUR JS FILE HERE -->
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<!-- <script defer src="/js-guides/the-dom.js"></script> -->
<!-- <script defer src="/js-guides/API.js"></script> -->
<!-- <script type="module" src="/js-guides/JSON.js"></script> -->
</head>
<body>
<h1 id="title" class="main-title">DOM Practice</h1>
<p class="cool">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quas animi
ipsa qui, sunt id rem autem error nesciunt sequi, provident eveniet
eos vel totam hic. Animi voluptate maiores sint asperiores?
</p>
<ul id="comments">
<li class="comment">first comment</li>
<li class="comment">second comment</li>
<li class="comment">third comment</li>
</ul>
</body>
</html>