Computer Science, asked by Roushan9534, 1 year ago

ch-9 (Web desigining) NCERT class VI

Make 5 Types of Program
Ex- <HTML>
<HEAD>
<TITLE>My school </title>
</HEAD>
<BODY>
Hello! My school Name A. B Ascent public school
</BODY>
</HTML>
only change the Title (My school) and Down The body (A. b Ascent public school)
THIS IS VERY EASY

Answers

Answered by anshulbansal53
1
------------------------  Example 1  ------------------------
<html>
<head>
<title>Using Paragraphs</title>
<.head>
<body>
<p>This is a sample pragraph written inside the paragraph tag of HTML 1.0. Paragraphs are not pre-formatted in HTML i.e. you can't format it in html code. </p>
</body>
</html>

------------------------  Example 2  ------------------------
<html>
<head>
<title>Using Headings</title>
<.head>
<body>
<h1>Largest Heading </h1>
<h6>smallest Heading </h6>
</body>
</html>

------------------------  Example 3  ------------------------
<html>
<head>
<title>Using lists</title>
<.head>
<body>
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
<li>List Item 4</li>
</ul>
</body>
</html>

Hope you will write two more examples by yourself from the above help. 

*In the last I would like to tell you that HTML doesn't make programmes, HTML is just a markup language, which creates markups for websites. 
Similar questions