HTML Practice
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- hi team, this is commment -->
<h1>This is Heading kartik first website</h1>
<h2>This is Heading kartik first website</h2>
<p1>here you find latest books</p1>
<!-- <hr> tag use for create horizantal lines -->
<hr>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Doloribus reiciendis ipsam inventore iure, animi id sequi, quos minima adipisci facilis distinctio porro excepturi quae odio, nihil veniam ut quisquam. Nobis?</p>
<!-- this anchor tag is use for url of another pages -->
<a href="HTTPS://www.google.com" target="_blank">clic here for visit google</a>
<a href="/test.html" target="_blank">this the next page</a>
<hr>
<!-- this is imgage tag it is use for show images -->
<img src="https://images.unsplash.com/photo-1633119446564-877e2c2ae501?ixid=MnwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=387&q=80 target" alt="Human image"width="121px">
<hr>
<b>This is a bold</b>
<br>
<i>this is italic</i>
<br>
<u>This is Underline project</u>
<br>
<big>This is Big </big>
<br>
<small>This one is small</small>
<p>CO<sub>2</sub></p>
<p>a <sup>2</sup>+b <sup>2</sup></p>
<!-- <pre> tag is use for copy and paste content same is it from main -->
<pre>def alarm(set_alarm_timer):
while True:
time.sleep(1)
current_time = datetime.datetime.now()
now = current_time.strftime("%H:%M:%S")
date = current_time.strftime("%d/%m/%Y")
</pre>
</body>
</html>
Comments
Post a Comment