Created
October 8, 2020 18:18
-
-
Save Mukhammadamin2002/ab95e309d71d9fbded4a526b985e1e98 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Hometask</title> | |
</head> | |
<body> | |
<h1>Heading One</h1> | |
<h2>Heading TWo</h2> | |
<h3>Heading Three</h3> | |
<h4>Heading Four</h4> | |
<h5>Heading Five</h5> | |
<H6>Heading Six</H6> | |
<!--paragraphs--> | |
<p>Lorem ipsum, dolor sit amet consectetur | |
adipisicing elit. <strong>Blanditiis provident, | |
aspernatur atque </strong>cumque facilis aut harum, | |
beatae, quae officiis commodi labore architecto at. | |
Omnis, eveniet. Voluptates dolores doloremque aspernatur vero. | |
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem sapiente praesentium | |
laudantium, atque ratione nam delectus debitis sit optio, | |
esse dignissimos cum suscipit reiciendis doloremque laborum quam tenetur. Odio, ad. | |
</p> | |
<br> | |
<p>Lorem ipsum dolor sit amet consectetur <a href="http://google.com"> adipisicing elit</a>. Non illo, perspiciatis sit | |
quod dignissimos quibusdam aperiam amet eum accusamus, | |
deserunt ipsam odio eaque, expedita quisquam? Excepturi aspernatur voluptatem facere amet. | |
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Aspernatur beatae architecto ut, eaque | |
expedita praesentium nam ipsa nostrum animi harum | |
sunt voluptates, in reprehenderit! Iste neque ea ut quod labore!</p> | |
<br> | |
<!--lists--> | |
<ul> | |
<li>LIst first</li> | |
<li>List Second</li> | |
<li>List Third</li> | |
<li>List Fourth</li> | |
</ul> | |
<ol> | |
<li>List first</li> | |
<li>List Second</li> | |
<li>List Third</li> | |
<li>List Fourth</li> | |
</ol> | |
<!--Tables--> | |
<table> | |
<thead> | |
<tr> | |
<th>NAme</th> | |
<th>Email</th> | |
<th>Age</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>Mukhammadamin</td> | |
<td>[email protected]</td> | |
<td>18</td> | |
</tr> | |
<tr> | |
<td>Joe</td> | |
<td>[email protected]</td> | |
<td>16</td> | |
</tr> | |
<tr> | |
<td>Alex</td> | |
<td>[email protected]</td> | |
<td>19</td> | |
</tr> | |
<tr> | |
<td>John</td> | |
<td>[email protected]</td> | |
<td>15</td> | |
</tr> | |
</tbody> | |
</table> | |
<br> | |
<!--forms--> | |
<form action="process.php" method="POST"> | |
<div> | |
<label>First Name</label> | |
<Input type="text" name="first-name"></Input> | |
</div> | |
<br> | |
<div> | |
<label>Last Name</label> | |
<Input type="text" name="last-name"></Input> | |
</div> | |
<br> | |
<div> | |
<label>Email</label> | |
<Input type="email" name="email"></Input> | |
</div> | |
<br> | |
<div> | |
<label>Message</label> | |
<textarea name="message" id="" cols="30" rows="10"></textarea> | |
</div> | |
<br> | |
<div> | |
<label>Gender</label> | |
<select name="Gender"> | |
<option value="Male">Male</option> | |
<option value="Female">Female</option> | |
<option value="Other">Other</option> | |
</select> | |
</div> | |
<br> | |
<div> | |
<label>Age</label> | |
<input type="number" name="Age" value="30"> | |
</div> | |
<br> | |
<div> | |
<label>Birthday</label> | |
<input type="date" name="Birthday"> | |
</div> | |
<br> | |
<input type="submit" name="submit" value="Submit"> | |
</form> | |
<br> | |
<button >Click Me</button> | |
<br> | |
<!--Image--> | |
<br> | |
<a href="65.jpg"><img src="65.jpg" alt="sky Image" width="400" height="250"></a> | |
<br> | |
<p>The <abbr title="Life Is Good">LG</abbr> is so popular brand</p> | |
<br> | |
<p>The <cite>Devs is Sphere</cite> that preapare young programmer</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment