-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path~1-5.html
More file actions
61 lines (56 loc) · 1.43 KB
/
~1-5.html
File metadata and controls
61 lines (56 loc) · 1.43 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>HTML Maker</title>
<!--<style>
body{
font-weight: bold;
}
</style>-->
<style>
blockquote{
font-weight: bold;
font-style: italic;
}
</style>
</head>
<body>
<p>This text is normal.</p>
<b>This text is bold.</b>
<p style="font-weight: bold;">This text is bold.</p>
<i>This text is italic</i>
<p style="font-style: italic;">This text is italic</p>
<em>This text is em</em>
<p>This is<small> small</small> and big.</p>
<p>This is <mark>Marked</mark> Text</p>
<p>
This is paragraph1.
This is paragraph1.<br>
This is paragraph1.
This is paragraph1.<br>
</p>
<p>This i s paragraph2.</p>
<p>
var myArray = [];
console.log(myArray.length); // 0
myArray[1000] = true; // [ , , ... , , true ]
console.log(myArray.length); // 1001
console.log(myArray[0]); // undefined
</p>
<hr>
<pre>
var myArray = [];
console.log(myArray.length); // 0
myArray[1000] = true; // [ , , ... , , true ]
console.log(myArray.length); // 1001
console.log(myArray[0]); // undefined
</pre>
<p>This paragraph contains <q>Quotation</q>.</p>
<p>This prargraph contains blockquote.</p>
<blockquote>
<p>This is BlockQuote.</p>
</blockquote>
</body>
</html>