-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.html
More file actions
48 lines (40 loc) · 1.25 KB
/
basic.html
File metadata and controls
48 lines (40 loc) · 1.25 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
<!--
comment -> CTRL + /
HTML
Hyper Text --
Markup -- <element> Statement </element>
Language --
tag -- <>
element -- <h1> - h1
Root element -> html
attribute -> <element attributeName=value>
-->
<html>
<head>
<!-- Tab bar -->
<title>Basic element</title>
<link rel="icon" href="./media/icon.png" />
</head>
<body>
<h1><center>CodeKul</center></h1>
<!-- Header Element -->
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<!-- <h7>Heading 7</h7> -->
<!-- Paragraph element -->
<p>This is a paragraph <br/> Lorem ipsum dolor sit amet consectetur adipisicing elit. Temporibus, voluptatem eveniet iste fugiat veritatis natus sit ex quas consectetur sapiente!</p>
<pre>preformatted text
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
</pre>
<div>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ad, sit.</div>
<header>header element</header>
<nav>Navigation element</nav>
<footer>Footer element</footer>
</body>
</html>