write down HTML coding to show your personal information?
Answers
Answer:
<!DOCTYPE html>
This tag defines the document type and HTML version.
<HTML>….</HTML>
This tag encloses the complete HTML document and mainly comprises of document header which is represented by <head>…</head> and document body which is represented by <body>…</body> tags.
<HEAD>….</HEAD>
This tag represents the document’s header which can keep other HTML tags like <title>, <link> etc.
<TITLE> CSSimplified HTML 2</TITLE>
The <title> tag is used inside the <head> tag to mention the document title.
<BODY>…</BODY>
This tag represents the document’s body which keeps other HTML tags like <h1>, <div>, <p> etc.
<P>…</P>
The <p> tag offers a way to structure your text into different paragraphs. Each paragraph of text should go in between an opening <p> and a closing </p> tag.
<B>…</B>
Anything that appears within <b>…</b> element, is displayed in bold.