forked from Nalinshankar/html-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.html
More file actions
56 lines (47 loc) · 1.05 KB
/
stack.html
File metadata and controls
56 lines (47 loc) · 1.05 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
<!doctype html>
<html>
<head>
<title>my first website</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div>
<h1>HELLO </h1>
<h1>world</h1>
<p><strong>here</strong> is <em>my</em> text.</p>
hellooo stackroute :)<br>
this is my list<br>
here is 1st item<br><br>
here is another item<br>
<ul>
<li>code</li>
<li>eat</li>
<li>sleep</li>
<li>repeat</li>
</ul>
<ol>
<li>code</li>
<li>eat</li>
<li>sleep</li>
<li>repeat</li>
</ol>
<dl>
<dt>training:</dt>
<dd>place is stackroute. </dd>
<dt>training:</dt>
<dd>place is stackroute. </dd>
<dt>training:</dt>
<dd>place is stackroute. </dd>
</dl>
<blockquotes>
<p>
<h3>use it for blog posting on website</h3>
</p>
</blockquotes>
<p>take me to <a href="https://www.youtube.com/watch?v=xIFZdFeGgoE&index=8&list=PLza6C6LcIJe9-zL1mO3zU45PuQclSS1oZ" target="_blank">html tutorial website</a>.</p>
<p><a href="aboutstackroute.html">about stackroute</a></p>
<img src="panda.jpg" alt="panda" />
</div>
</body>
</html>