-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtmllessons.html
executable file
·121 lines (111 loc) · 4.16 KB
/
htmllessons.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
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
<html>
<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>html lesson</title>
<style>
table {
border-collapse: collapse;
width: 100%;
height: 100%;
}
.leftside {
margin: 0;
padding: 0;
width: 200px;
background-color: rgb(255, 255, 255);
border-right: 2px solid black;
border-left: 2px solid black;
border-bottom: 2px solid black;
}
a {
text-decoration: none;
color: rgb(0, 0, 0);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
td {
vertical-align: top;
}
a:hover {
color: rgb(255, 255, 255);
background: transparent;
background-color: rgb(0, 250, 154);
border-radius: 5px;
}
</style>
</head>
<body style="margin: 0;">
<table>
<tr>
<td class="leftside">
<ul>
<li>
<a href="html/basic.html" target="content">HTML Basics</a>
</li>
<li>
<a href="html/attribute.html" target="content">HTML Attributes</a>
</li>
<li>
<a href="html/heading.html" target="content">HTML Heading</a>
</li>
<li>
<a href="html/paragraph.html" target="content">HTML Paragraph</a>
</li>
<li>
<a href="html/styles.html" target="content">HTML Style</a>
</li>
<li>
<a href="html/formatting.html" target="content">HTML Formatting</a>
</li>
<li>
<a href="html/quotations.html" target="content">HTML Quotations</a>
</li>
<li>
<a href="html/comments.html" target="content">HTML Comments</a>
</li>
<li>
<a href="html/colors.html" target="content">HTML Colors</a>
</li>
<li>
<a href="html/css.html" target="content">HTML CSS</a>
</li>
<li>
<a href="html/links.html" target="content">HTML Links</a>
</li>
<li>
<a href="html/images.html" target="content">HTML Images</a>
</li>
<li>
<a href="html/favicon.html" target="content">HTML Favicon</a>
</li>
<li>
<a href="html/tables.html" target="content">HTML Tables</a>
</li>
<li>
<a href="html/list.html" target="content">HTML List</a>
</li>
<li>
<a href="html/block&inline.html" target="content">HTML Block & Inline</a>
</li>
<li>
<a href="html/classes.html" target="content">HTML Classes</a>
</li>
<li>
<a href="html/id.html" target="content">HTML Id</a>
</li>
<li>
<a href="html/iframes.html" target="content">HTML Iframe</a>
</li>
<li>
<a href="html/forms.html" target="content">HTML Forms</a>
</li>
</ul>
</td>
<td class="rightside">
<iframe src="html/basic.html" name="content" width="100%" height="100%" style="border: none;"></iframe>
</td>
</tr>
</table>
</body>
</html>