-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (75 loc) · 2.3 KB
/
index.html
File metadata and controls
84 lines (75 loc) · 2.3 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
<!DOCTYPE html>
<html>
<head>
<title>Another index.html file</title>
<meta charset="UTF-8">
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="John Doe">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="table.css">
</head>
<body>
<header>
<nav>
<!-- works like <a href="/index.html">Home</a> -->
<a href="/">Home</a>
</nav>
</header>
<main>
<div>avocado</div><div>kiwi</div><div>banana</div>
</p><span>I am in line </span><span>Above are block elements</span>
<p>I represent Paragraph</p>
<pre>Text in a pre element
is displayed in a fixed-width
font, and it preserves
both spaces and
line breaks
</pre>
<h1> "About People and Fruit</h1>
<article>
<!-- Content added in previous points -->
<ul>
<li>Kevin like banana</li>
<li>Kate does not think tomatoe is a fruit</li>
<li>I dont like fruit</li>
</ul>
</article>
<article>
<h2>This is on table elements</h2>
<table>
<thead>
<tr>
<th colspan="3">The table header</th>
</tr>
</thead>
<tbody>
<tr>
<td>The table body</td>
<td colspan="2"> colspan it can be added!</td>
</tr>
<tr>
<td>I added this</td>
<td>Here is another childe added</td>
<td>yet another child</td>
</tr>
</tbody>
</table>
</article>
<article>
<h2>"Learning elements - div, span, p, pre, ul, li, ol, article"</h2>
</article>
<img src="https://picsum.photos/200/300" alt="" />
<video controls width="250">
<source src="/media/cc0-videos/flower.webm" type="video/webm">
<source src="/media/cc0-videos/flower.mp4" type="video/mp4">
Sorry, your browser doesn't support embedded videos.
</video>
<audio controls src="/media/cc0-audio/t-rex-roar.mp3">
Your browser does not support the
<code>audio</code> element.
</audio>
</main>
<footer>Copyright 2021 ©</footer>
</body>
</html>