-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 1.14 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
<!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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1><i>JavaScript Basics Learning File</i></h1> <!-- if we get h1 element by TagName then,
innerHTML : "<i>JavaScript Learning File</i>"
and innerText : "JavaScript Learning File" -->
<hr>
<p>
<b><mark>JUST SOME DUMMY TEXT</mark></b> <br>
Lorem ipsum <u>dolor</u> sit amet <strike> consectetur </strike>, <em>adipisicing</em> elit. Voluptatum quo dolores doloremque, odit officiis <small>omnis</small> quia <del>impedit</del>, labore, nemo quas! Non <ins>ipsum</ins> at in et omnis! Minima, est consequatur!
</p>
<hr>
<pre>...this will appear as it is !
...mofm <sub>told </sub>you <sup>bro</sup>
...mfom...
</pre>
<hr>
<script src="dextor.js"></script>
</body>
</html>