-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyFirstWebsite.html
More file actions
51 lines (40 loc) · 1.37 KB
/
Copy pathMyFirstWebsite.html
File metadata and controls
51 lines (40 loc) · 1.37 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
<!-- kUMe1FH4CHE 51:00 -->
<!-- MyFirstWebsite.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My First Website</title>
<meta name="author" content="ajbrujx">
<meta name="description" content="This page is a sandbox to learn html">
<link rel="icon" href="atari.png" type="image/x-icon">
<link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<h1>Hello World!</h1>
<hr>
<h2>I'm ready to learn HTML</h2>
<p>This is my first web page.</p>
<h3>My Daily Schedule</h3>
<p>Let me tell you how:</p>
<br> ... I learn more about web dev.
<br> ...I plan out my schedule
<br> ...I use resources from <abbr title="Mozilla Developer Network">MDN</abbr>.
<hr>
<h2>I Am Also Planning a Vacation</h2>
<p>I've been working hard and <em>really need a getaway</em></p>
<h3>Place I'd Like to Visit</h3>
<p>I've heard things about southeast Asia</p>
<p>I've hear good things about going here:</p>
<address>
240, Olympic-ro <br>
Songpa-gu <br>
Seoul 05551
</address>
<!-- TODO: Add more places -->
<h3>Place I want to avoid</h3>
<p>Anywhere cold. <strong>No way</strong>!</p>
<hr>
<<< © ajbrujx >>>
</body>
</html>