-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 829 Bytes
/
index.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
<!DOCTYPE html>
<html>
<!-- This is a comment -->
<head>
<link href="css/style.css" rel="stylesheet" type="text/css">
<title>My First Web Page</title>
</head>
<body>
<h1>Welcom to My First Webpage!</h1>
<h2><em>Let us jump in to web development</em></h2>
<p>Hello, World!</p>
<p>Welcome to My <strong>First Webpage</strong>!</p>
<a href="new-page.html">Our New page with photo</a>
<p></p>
<a href="http:www.google.com">Goto Google</a>
<ul>
<li>CSS</li>
<li>HTML</li>
<li>PYTHON</li>
<li>JSNODE</li>
</ul>
<Ol>
<li>CSS</li>
<li>HTML</li>
<li>PYTHON</li>
<li>JSNODE</li>
</Ol>
<p>The end</p>
</body>
</html>