write the HTML program to create a webpage using the following instructions title of the webpage secrets of success background colour orange text colour white Level One heading secrets of success heading centre of the page paragraph first write a line to second paragraph left aligned
Answers
<html>
<head>
<title>
secret of success
</title>
</head>
<body bg color="orange">
<center> <font color = white> <H1> secret of success </H1> </font> </center>
<br>
<font color = white> write your first paragraph </font>
<br>
<p align="left"> <font color = white> write your second paragraph </font> </p>
<br>
</body>
</html>
note : there is no alignment in first paragraph
and in second paragraph there is a left alignment
there is no paragraph in the above coding... type or add your own paragraph that you want to put or add.
Answer:
The HTML program for creation of the required webpage is found to be as follows:
<html>
<head>
<title>
secret of success
</title>
</head>
<body bg color="orange">
<center> <font color = white> <h1>
secret of success
</h1> </font> </center>
<br>
<font color = white>
write your first paragraph
</font>
<br>
<p align="left"> <font color = white>
write your second paragraph
</font> </p>
<br>
</body>
</html>
Explanation:
- HTML (Hyper-text Markup Language) is the standard markup language for pages, documents designed to be displayed in a web browser. It can be supported by technologies such as cascading style sheets (CSS) and scripting languages such as JavaScript.
- The web browser receives an HTML document from a web server or local storage and renders the document into a multimedia web page. HTML semantically describes the structure of a web page and originally contains hints about the appearance of the document.
- The HTML element is a component of an HTML page. You can use the HTML structure to embed other objects such as images and interactive forms in the rendered page.
- It provides a way to create documents that are structured by showing the structural semantic of text such as paragraphs, headings, lists, links, citations, and other elements. HTML elements are separated by tags enclosed in angle brackets.
#SPJ2