-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (54 loc) · 1.21 KB
/
index.html
File metadata and controls
90 lines (54 loc) · 1.21 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
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
<head>
<!-- metadata, importing things, setting templates
-->
<style>
p { color: blue;
background-color: YELLOW;
font-size: 23;
border-style: nil;
font-family: sans-serif;
}
// .my_css {
display: flex;
flex-direction: row;
align-items: center;
}
// .my_var {
background-color: green;
color: white;
}
.another_var {
color: black;
width: 50%;
height: 100%;
margin: 13%;
}
table { width: 200;}
tr:nth-child(odd) { background-color: #eee;
}
// h1, h2, p, table {
width: 300;
margin: auto;
text-align: center;
}
</style>
<!-- cmd-/ = add comment -->
</head>
<body>
<h1>Hi Errol<h1>
<div class="my_css">
<h2>This is the beginning</h2>
<table>
<tr><td>test1</td></tr>
<tr><td>test1</td></tr>
<tr><td>test1</td></tr>
<tr><td>test1</td></tr>
<tr><td>test1</td></tr>
<tr><td>test1</td></tr>
</table>
<p >This is a para of text...1</p>
</div>
<p STYLE='FONT-SIZE:15; background-color: red;'>This is a para of text...2</p><p >This is a para of text...3</p>
<p class = 'my_var'>This is a para of text...4</p><p >This is a para of text...5</p>
<p class = 'my_var another_var'>This is a para of text...6</p><p class = 'another_var my_var'>This is a para of text...7</p>
</body>