-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
222 lines (184 loc) · 6.3 KB
/
index.html
File metadata and controls
222 lines (184 loc) · 6.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<!doctype html>
<!-- Defines the document type as HTML5 -->
<html lang="en">
<!-- Root element of the HTML document, language is English -->
<head>
<!-- Contains metadata and settings for the page -->
<meta charset="UTF-8" />
<!-- Sets character encoding to UTF-8 (supports all characters) -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Makes the page responsive on all devices -->
<title>Data Science</title>
<!-- Title displayed in the browser tab -->
</head>
<!-- End of head section -->
<body>
<!-- Main visible content starts here -->
<!-- <h1>data science</h1>
<h2>data science</h2>
<h3>data science</h3>
<h3>hello</h3>
<h4>data science</h4>
<h5>data science</h5>
<h6>data science</h6>
<P>
hdlkfjsdfoajs flkdjfkjhadf dlfhjdnf dfkaj
fadafllhdfokjdf
dfoijd
<h3>hello </h3>
djfjdkfj
dfhdkfjdkfd<strong>hi djfdkf</strong> djfhdjfhjdf
<em>dfdfkdkd</em>
</P> -->
<!-- Headings from h1 to h6 (largest to smallest)
<p> is a paragraph
<strong> makes text bold
<em> makes text italic
Note: placing <h3> inside <p> is not valid HTML -->
<!-- //////////////////////// -->
<!-- <a href="https://www.google.com" target="_blank">zinou</a>
<button onclick="alert('Hi')">clic me</button>
<img src="images.png" alt="my image" /> -->
<!-- <a> creates a link (opens in new tab)
<button> triggers alert on click
<img> displays an image with alt text -->
<!-- <ul>
<li>hii</li>
<li>pdfd</li>
<li>dkafdl</li>
<li>ala</li>
</ul>
<ol>
<li>hii</li>
<li>pdfd</li>
<li>dkafdl</li>
<li>ala</li>
</ol> -->
<!-- <ul> unordered list (bullets)
<ol> ordered list (numbers)
<li> list item -->
<!-- /////////////////////////// -->
<!-- <table
border="5"
style="width: 100%; height: 400px; background-color: #f72482"
>
<tr style="background-color: orange">
<th>Name:</th>
<th>Age:</th>
</tr>
<tr>
<td>zinou</td>
<td>30</td>
</tr>
<tr>
<td>ahmed</td>
<td>10</td>
</tr>
</table> -->
<!-- <table> creates a table
border sets thickness
style applies CSS
<tr> table row
<th> header cell
<td> data cell -->
<!-- <div style="background-color: aqua">
<h3>data science</h3>
<p>
dfsldfkklkjakdjf kfdflkjdsfkjd klfsgfdjgkdf kjgsgngdligjg lggsffkglknkl
ljgfklfjgfgl glfgjsfoglsoijgdjosso ifgifoigj
</p>
</div>
<h3>AI</h3>
<p>
dfsldfkklkjakdjf
<span style="background-color: blueviolet"> klfsgfdjgkdf</span>
kjgsgngdligjg lggsffkglknkl ljgfklfjgfgl glfgjsfoglsoijgdjosso ifgifoigj
</p> -->
<!-- <div> is a block container
<span> is an inline container for styling part of text -->
<!-- //////////////////////// -->
<!-- <form action="https://zinou.com/submitemail" method="POST"> -->
<!-- Form sends data to server using POST -->
<!-- <label for="email-input">Email</label>
<input
type="text"
id="email-input"
placeholder="abc@email.com"
required
disabled
/>
<textarea cols="50" rows="20">ldkjdfkdjfkdjfkdskjfmdddfda</textarea>
<input type="submit" /> -->
<!-- label connects to input
input type text
required:The field must be filled before submitting the form.
disabled:The field is completely inactive (disabled).
textarea for long text
submit button -->
<!-- <label for="os-select">OS</label>
<select name="os-select" id="os-select" multiple>
<option value="ios">ios</option>
<option value="andr">android</option>
<option value="mac">mac</option>
<option value="wind">windows</option>
</select>
<input type="submit" /> -->
<!-- select dropdown with multiple selection
option defines choices
id: A unique identifier for the element.
Used for:
Linking with <label>
Styling with CSS
Accessing with JavaScript
*Important:
Must be unique in the page (only one element can have this id)
name:The key (variable name) sent to the server when the form is submitted.
value:The actual data sent to the server, not the visible text.
-->
<!-- <input type="number" min="10" max="15" /> -->
<!-- number input with limits -->
<!-- <input type="range" min="10" max="15" /> -->
<!-- slider input -->
<!-- <input type="date" /> -->
<!-- date picker -->
<!-- <input type="time" /> -->
<!-- time picker -->
<!-- <input type="week" /> -->
<!-- week picker -->
<!-- <input type="month" /> -->
<!-- month picker -->
<!-- <input type="datetime-local" /> -->
<!-- date & time picker -->
<!-- <input type="email" /> -->
<!-- email input with validation -->
<!-- <input type="password" /> -->
<!-- password input (hidden text) -->
<!-- <label>remember me ?</label>
<input type="checkbox" />
<input type="submit" /> -->
<!-- checkbox input -->
<!-- <input type="file" /> -->
<!-- file upload input -->
<!-- </form> -->
<!-- end of form -->
<!-- //////////////////////// -->
<!-- <h2>From Index.html</h2> -->
<!-- heading -->
<!-- <iframe src="https://www.google.com"></iframe> -->
<!-- embed external website -->
<!-- <iframe src="index2.html" height="100" width="100"></iframe> -->
<!-- embed local page -->
<!-- ///////////////////////// -->
<!-- <video controls width="640" height="360">
<source src="video1.mp4" />
your browser does not support the video tag.
</video>
<audio controls>
<source src="video1.mp4" />
your browser does not support the audio tag.
</audio> -->
<!-- video and audio players with controls -->
</body>
<!-- End of body -->
</html>
<!-- End of HTML document -->