-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtmlElements.html
81 lines (71 loc) · 1.97 KB
/
htmlElements.html
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
<!DOCTYPE html>
<html>
<head>
<title>this is my first title</title>
</head>
<body>
<h1> this is the heading h1</h1>
<h2>this is the heading h2</h2>
<h3>this is the heading h3</h3>
<h4>this is the heading h4</h4>
<h5>this is the heading h5</h5>
<h6>this is the heading h6</h6>
<p>this is my first paragraph</p>
<a href="https:www.w3schools.com">this the first link</a>
<p>This is the second paragraph</p>
<img src="w3schools.png" alt="w3schools.com">
<ul>recipe
<li>matooke</li>
<li>onions</li>
<li>tomatoes</li>
<li>g nuts</li>
</ul>
<ol>
relatives
<li>me</li>
<li>my bro</li>
<li>my sis</li>
</ol>
<div> div this content is <span>there is us too, we are here in span</span> in here, see it div</div>
<table>
<tr><th>month</th><th>savings</th></tr>
<tr><td>Jan</td><td>250</td></tr>
<tr><td>Feb</td><td>300</td></tr>
</table>
<form>this is my form sentence</form>
<input type="text" >
<button>my button</button>
<br>
<textarea rows="4" cols="49"></textarea>
<br>
<select name="cars" id="cars">
<option value="Volvo">Volvo</option>
<option value="Saab">Saab</option>
<option value="Mercedese">Mercedese</option>
<option value="Audi">Audi</option>
</select>
<label for="cars">Choose a car</label>
<br>
<br>
<iframe src="letthemsee.html" height="200" width="300" title="iframe example"></iframe>
<br>
<audio controls >
<source src="MorningAfterDark.m4a" type="audio/mpeg">
</audio>
<br>
<video controls width="300" height="400">
<source src="technology.mp4" type="video/mp4">
</video>
<br>
<nav>
<a href="index.html">home page</a>
<a href="about.html">about</a>
<a href="products.html">products</a>
</nav>
<footer>
copyright ©
<br>
contact info
</footer>
</body>
</html>