This repository was archived by the owner on Dec 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtext.html
More file actions
46 lines (36 loc) · 1.06 KB
/
text.html
File metadata and controls
46 lines (36 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>text</title>
</head>
<body>
<a href="blog.html">go to blog</a>
<!-- Lists -->
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
</ul>
<ol>
<li>List Item 3</li>
<li>List Item 4</li>
</ol>
<!-- Image target make the link opened in another tab -->
<a href="../../../images/sample.jpg" target="_blank">
<img src="../../../images/sample.jpg" alt="My Sample Image" width="200">
</a>
<!-- Quotations -->
<blockquote cite="http://traversymedia.com">
<!-- cite means when u go to the source code option in your browser ctrlu+u then you go that site it will give you directly the source code fo that website -->
Lorem ipsum dolor sit amet, consectetur adipisicing elit,
<em> sed do eiusmod tempor incididunt </em>ut labore et dolore magna aliqua. Ut enim
<cite>ad minim veniam</cite> ,
</blockquote>
<p>The
<abbr title="World Wide Web">abbriviation at a hover </abbr> is awesome</p>
<p>
<cite>HTML crash course</cite> by Brad Traversy</p>
<p>
Lorem + tab === generates some gebrish words
</p>
</body>
</html>