पहले स्वयं अभ्यास करने की कोशिश करें , अपना दिमाग लगायें और बाद में Solution देखें |
- HTML webpage में Hello world प्रोग्राम बनाये |
- HTML webpage में <h1> से <h6> तक heading program बनाएँ |
- Webpage में paragraph program बनाये |
- HTML webpage में paragraph प्रोग्राम बना कर Line break कीजिये |
- HTML webpage में horizontal program बनाएँ |
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title></title>
</head>
<body>
<h1> Hello World </h1>
</body>
</html>
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title></title>
</head>
<body>
<h1> Hello World </h1>
<h2> Hello World</h2>
<h3> Hello World</h3>
<h4> Hello World</h4>
<h5> Hello World</h5>
<h6> Hello World</h6>
</body>
</html>
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title></title>
</head>
<body>
<p> Lorem ipsum dolor sit amet consectetur adipisicing elit.
Velit nam harum eos, repellat officia eius culpa temporibus,
exercitationem nostrum inventore rerum cum
reprehenderit tempore obcaecati voluptates
quia dolorum iure ea?</p>
</body>
</html>
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title></title>
</head>
<body>
<p> Lorem ipsum dolor sit amet consectetur adipisicing elit.
Velit nam harum eos, repellat officia eius culpa temporibus,
<br>
exercitationem nostrum inventore rerum cum
reprehenderit tempore obcaecati voluptates
<br>
quia dolorum iure ea? twinkle twinkle little star
how i wonder.
<br>
what you are up above the worlds
high like diamond in the sky.</p>
</body>
</html>
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title></title>
</head>
<body>
<p> Lorem ipsum dolor sit amet consectetur adipisicing elit.
Velit nam harum eos, repellat officia eius culpa temporibus,
<hr>
exercitationem nostrum inventore rerum cum
reprehenderit tempore obcaecati voluptates
<hr>
quia dolorum iure ea? twinkle twinkle little star
how i wonder.
<hr>
what you are up above the worlds
high like diamond in the sky.</p>
</body>
</html>