-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
90 lines (77 loc) · 2.52 KB
/
Copy pathexample.html
File metadata and controls
90 lines (77 loc) · 2.52 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link href="example.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<title>MaldavskyVariant</title>
</head>
<body>
<h1 id="header1">H1</h1>
<h2>H2</h2>
<h3>H3</h3>
<h4>H4</h4>
<h5>H5</h5>
<h6>H6</h6>
<img id="csgoimg" src="images/csgo_logo.png" alt="cesegou" style="width:400px" />
<p style="font-family:monospace;font-size:300%;color:chocolate">Add your sample text.<br><b>D</b><strong>o</strong> <i>i</i><em>t</em> <mark>n</mark><small>o</small><sup>w</sup><sub>w</sub><del>w</del></del><ins>w</ins>!</p>
<p>This is <b>Bold text</b>.</p>
<p>This is <strong>Important text</strong>.</p>
<p>This is <i>Italic text</i>.</p>
<p>This is <em>Emphasized text</em>.</p>
<p>This is <mark>Marked text</mark>.</p>
<p>This is <small>Small text</small>.</p>
<p>This is <del>Deleted text</del>.</p>
<p>This is <ins>Inserted text</ins>.</p>
<p>This is <sub>Subscript text</sub>.</p>
<p>This is <sup> Superscript text</sup>.</p>
<a href="https://www.youtube.com" target="_blank">YouTube</a>
<p>On youtube.com you can:</p>
<ul>
<li>watch videos</li>
<li>like</li>
<li>comment</li>
</ul>
<p>You have to:</p>
<ol>
<li>watch videos</li>
<li>like</li>
<li>comment</li>
</ol>
<p>All of this for free!</p>
<dl>
<dt>Tag</dt>
<dd>An mark that is used to distinguish HTML code from regular text</dd>
</dl>
<table>
<tr>
<th>fiorst naim</th>
<th>liast naim</th>
<th>location</th>
</tr>
<tr>
<td>Eu</td>
<td>Eu</td>
<td>Acasa</td>
</tr>
<tr>
<td>Tu</td>
<td>Tu</td>
<td>China</td>
</tr>
<tr>
<td>El</td>
<td>El</td>
<td>In drum</td>
</tr>
</table>
<q>to be or not to be</q>
<blockquote>to quote or not to quote</blockquote>
<p><blockquote>to quote or not to quote</blockquote>
</p>
<!-Write your comments here->
</body>
</html>