Write a html program to display your school name and address using various heading level tag
Answers
Answer:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Answer:
The HyperText Markup Language for texts intended to be viewed in a web browser is HTML or HyperText Markup Language. Technologies like Cascading Style Sheets and programming languages like JavaScript can help.
The language used to describe the organization of Web pages is called HTML. Authors may publish online documents containing headers, text, tables, lists, images, etc. thanks to HTML. Click a button to quickly access internet content using hypertext links.
Explanation:
<!DOCTYPE html>
<html>
<body>
<h2>Text field</h2>
<p>The <strong>input type="text"</strong> defines a one-line text input field:</p>
<form action="/action_page.php">
<label for="sname">School name:</label><br>
<input type="text" id="sname" name="sname"><br>
<label for="add">Address:</label><br>
<input type="text" id="add" name="add"><br><br>
<input type="submit" value="Submit">
</form>
<p>Note that the form itself is not visible.</p>
<p>Also note that the default width of a text field is 20 characters.</p>
</body>
</html>
A web browser may distinguish between HTML material and plain content using tags. The open tag, closing tag, and content tag are the three essential components of an HTML tag.