-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHello_world.html
More file actions
173 lines (168 loc) · 3.85 KB
/
Hello_world.html
File metadata and controls
173 lines (168 loc) · 3.85 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello World</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<style>
h1,h2 {
color: red;
text-decoration: underline;
}
body {
background-color: blue;
background-image: url("img/swirl_pattern.png");
}
ul {
list-style: circle;
}
td, tr {
padding: 20px ;
}
th {
font-weight: bold;
text-decoration: underline;
}
a:link {
color: red;
}
a:visited{
color: black;
}
a:hover{
color: blue;
}
a:active {
color: green;
}
</style>
</head>
<body>
<div id="wrapper">
<a href="Top"></a>
<h1>Hello World</h1>
<h2>Hello world</h2>
<h3>Hello world</h3>
<h4>Hello world</h4>
<h5>Hello world</h5>
<h6>Hello world</h6>
<p>Hello, my name is Yogesh Adhikari. Here are some fun facts about me: <br>
I like to <em>code</em>.<br>
I like to <strong>play soccer</strong>.<br>
</p>
<h2>My Favorite Quote</h2>
<blockquote>You can do it.</blockquote>
<h2>I'm learning LAMP stack.</h2>
<ul>
<li>L: Linux</li>
<li>A: Apache</li>
<li>M: MySQL</li>
<li>P: PHP</li>
</ul>
<h2>My Top 5 Favorite Foods</h2>
<ol>
<li>Chicken</li>
<li>Lamb</li>
<li>clam</li>
<li>oyester</li>
<li>kimchi</li>
</ol>
<h2>Questions I'm Often Asked.</h2>
<dl>
<dt>Where are you originally from?</dt>
<dd>I'm from Nepal.</dd>
<dt>Did you win the lottery?</dt>
<dd>No, I just have can do attitude.</dd>
</dl>
<p><span>My</span> favorite spot is Houston.</p>
<p>My Favorite actor is <br> Tom Cruise.</p>
<h2>My Favorite Websites</h2>
<ul>
<li><a href="http://www.google.com" target="_blank">Google</a></li>
<li><a href="http://www.microsoft.com" target="_blank">Microsoft</a></li>
<li><a href="http://www.facebook.com" target="_blank">Facebook</a></li>
<li><a href="http://www.twitter.com" target="_blank">Twitter</a></li>
<li><a href="http://www.instagram.com" target="_blank">Instagram</a></li>
</ul>
<h2>My Vehicle</h2>
<p>I drive a GMC Sierra. It is quite nice. Here is what it looks like...</p>
<img src="GMC-Sierra.img" alt="My GMC Sierra">
<h2>Decimal to Hexadecimal Conversion Chart.</h2>
<table>
<tr>
<th>Decimal</th>
<th>Hexadecimal</th>
</tr>
<tr>
<th>0</th>
<th>o</th>
</tr>
<tr>
<th>1</th>
<th>1</th>
</tr>
<tr>
<th>2</th>
<th>2</th>
</tr>
<tr>
<th>3</th>
<th>3</th>
</tr>
<tr>
<th>4</th>
<th>4</th>
</tr>
<tr>
<th>5</th>
<th>5</th>
</tr>
<tr>
<th>6</th>
<th>6</th>
</tr>
<tr>
<th>7</th>
<th>7</th>
</tr>
<tr>
<th>8</th>
<th>8</th>
</tr>
<tr>
<th>9</th>
<th>9</th>
</tr>
<tr>
<th>10</th>
<th>A</th>
</tr>
<tr>
<th>11</th>
<th>B</th>
</tr>
<tr>
<th>12</th>
<th>C</th>
</tr>
<tr>
<th>13</th>
<th>D</th>
</tr>
<tr>
<th>14</th>
<th>E</th>
</tr>
<tr>
<th>15</th>
<th>F</th>
</tr>
</table>
<a href="#Top">Back to top.</a>
</div>
<div id="wrapper">
<p><span>My</span> sentence 1</p>
<p>My<br>sentence 2</p>
</div>
</body>
</html>