-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (98 loc) · 3.78 KB
/
index.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
126
127
128
<!DOCKTYPE html>
<html>
<head>
<title>My First WebSite</title>
</head>
<body>
<h1 style="text-align: center; background-color: #6060e9;padding: 30px">Header One</h1>
<h6>Header One</h6>
<p>A <strong>website</strong> (also written as a web site) is a collection of web pages and related content that is
identified by a common domain name and published on at least one web server. Websites are
typically dedicated to a particular topic or purpose, such as news, education, commerce,
entertainment or social networking. Hyperlinking between web pages guides the navigation of the
site, which often starts with a home page. As of May 2023, the top 5 most visited websites are
Google Search, YouTube, Facebook, Twitter, and Instagram.</p>
<a href="https://www.youtube.com/watch?v=QdezFxHfatw" target="_blank">batafsil</a>
<!-- ul - unordered list, li - list item-->
<p>Sites List:</p>>
<ul>
<li>google</li>
<li>youtube</li>
<li>google play</li>
<li>google pay</li>
<li>google search</li>
</ul>
<!--<ol>
<li>google</li>
<li>youtube</li>
<li>google play</li>
<li>google pay</li>
<li>google search</li>
</ol> -->
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Number</th>
</tr>
</thead>>
<tbody>
<tr>
<td>John Cena</td>
<td>[email protected]</td>
<td>+998 90 123-45-67</td>
</tr>
<tr>
<td>Rock jhonson</td>
<td>[email protected]</td>
<td>+998 90 123-45-68</td>
</tr>
</tbody>
</table>>
<br>
<!-- break -->
<hr>
<!-- horizontal line-->
<img src="texno.png" width="200" hight="100">
<form>
<label for="fname">
First Name:
<input type="text" placeholder="First Name" id="fname" name="fname" />
<!-- inputga nima yozish kerak ekanligini aytib turadi-->>
</label>
<label for="age">
Age:
<input type="number" placeholder="Age" id="age" name="age" />
<!-- inputga nima yozish kerak ekanligini aytib turadi-->>
</label>
<br> <br>
<label for="Passport">
Email:
<input type="password" placeholder="password" id="password" name="password" />
<!-- inputga nima yozish kerak ekanligini aytib turadi-->
</label>
<br>
<label for="Person?">
Person?:
<input type="checkbox" id="person?" name="person?" />
</label>
<br>
<label for="Person?">
Gender:
<input type="radio" id="gender" name="gender" />
<input type="radio" id="gender" name="gender" />
</label>
<br>
<label for="country">
Where are you from ?
<select name="country" id="country">
<option value="uz">uzbekistan</option>
<option value="us">usa</option>
<option value="kazah">kazahstan</option>
</select>
</label>
</form>
<p style="text-align: center; background-color: #6060e9;padding: 20px">CopyRight CityTech Tashkent</p>
</body
</html>