forked from wilsonestelle85/wilsonestelle85.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feb10.html
125 lines (79 loc) · 2.59 KB
/
feb10.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>This is my first website!</title>
</head>
<body>
<!--div or section for grouping different contents realtive to each other-->
<div class="" style="border:2px solid red">
<h1>This is a heading</h1>
<s>100</s> <del>100</del>
<abbr title="">NASA</abbr>
<cite>Book Name</cite>
<blockquote cite="http://">
some text from another website
</blockquote>
</div>
<br>
<textarea name="name" rows="12" cols="100"> <form class="" action="index.html" method="post">
<input type="" name="first_name" value="First Name">
<input type="text" name="first_name" value="First Name">
<input type="text" name="first_name" value="First Name">
<button type="button" name="button"><a href="http://www.google.com">Click me </a></button>
</form></textarea>
<!--ctrl +c, ctrl+v-->
<form class="" action="index.html" method="post">
<input type="" name="first_name" value="First Name">
<input type="text" name="first_name" value="First Name">
<input type="text" name="first_name" value="First Name">
<button type="button" name="button"><a href="http://www.google.com">Click me </a></button>
</form>
<label for="">choose your favorite food</label> <br>
<select class="" name="" >
<option value="">Coffee</option>
<option value="">Tea</option>
<option value="">Snack</option>
</select>
<br><br>
<table border="3px" width="300px" height="200" >
<thead>
<tr>
<th>item1</th>
<th>item1</th>
<th>item1</th>
</tr>
</thead>
<tbody align="center">
<tr>
<th>item1</th>
<td>item1</td>
<td>item1</td>
</tr>
<tr>
<th>item1</th>
<td>item1</td>
<td>item1</td>
</tr>
</tbody>
</table>
<ul>
<li>Item1
<ol>
<li>Item1</li>
<li>Item1</li>
<li>Item1</li>
</ol>
</li>
<li>Item1</li>
<li>Item1</li>
<li>Item1</li>
<li>Item1</li>
<li>Item1</li>
</ul>
<img src="images/3.jpg" alt="New York City Pic" width="300px" title="Image of New York">
<img src="images/3.jpg" alt="New York City Pic" width="300" align="right">
<iframe src="-dog story.mp4" width="" height=""></iframe>
<iframe src="https://www.youtube.com/embed/2ReR1YJrNOM" width="560" height="315" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<audio controls src="song.mp3"></audio>
</body>
</html>