-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC8_S1_Demos.txt
135 lines (114 loc) · 3.05 KB
/
C8_S1_Demos.txt
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
1. anatomy.html :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anatomy of a Document</title>
</head>
<body>
<!--main content comes here-->
<h1>Main Heading</h1>
<h2>Sub Heading</h2>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit.
</p>
</body>
</html>
===============================================================
2. definition_list.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Defnition Lists</title>
</head>
<body>
<h3>Biological Terms</h3>
<dl>
<dt>Anatomy</dt>
<dd>the study of the inside of the body and outside the body.</dd>
<dt>Genetics</dt>
<dd>The study of heredity and the variation of inherited characteristics.</dd>
</dl>
</body>
</html>
===============================================================
3. first_web_page.html
<!DOCTYPE html>
<html>
<head>
<title> My First Web Page </title>
</head>
<body>
This is my first web page created using html elements.
I am excited to learn HTML from scratch.
It is quite interesting to learn HTML which is the basic for creating web pages.
</body>
</html>
=============================================================
4. image.html
Place avatar.jpeg image on the same directory or folder
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Data</title>
</head>
<body>
<h1>Profile Page</h1>
<hr>
<img src="./avatar.jpeg" alt="profile" />
<a href="https://www.linkedin.com/">
<h3>Technical Specialist</h3>
</a>
</body>
</html>
=================================================================
5. List.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List Demo</title>
</head>
<body>
<h3>Grocery list</h3>
<ol>
<li>Milk</li>
<li>Bread</li>
<li>Vegetables</li>
<li>Eggs</li>
</ol>
<hr>
<h3>Programming languages</h3>
<ul>
<li>C++</li>
<li>Java</li>
<li>Python</li>
<li>C#</li>
</ul>
</body>
</html>
====================================================================
6. multi_cursor_feature.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multi Cursor Demonstration</title>
</head>
<body>
<ul>
<li>The Quick brown fox jumps over the lazy dog</li>
<li>The Quick brown fox jumps over the lazy dog</li>
<li>The Quick brown fox jumps over the lazy dog</li>
<li>The Quick brown fox jumps over the lazy dog</li>
<li>The Quick brown fox jumps over the lazy dog</li>
</ul>
</body>
</html>
===================================================================