The Hindu 1 June.pdf:- Download
Latest Posts
Thursday, 2 May 2019
Tuesday, 22 January 2019
Basic Knowledges
January 22, 2019
Comments
The browser doesn't display comments, but they help document the HTML and add descriptions, remainders, and other notes.
For example
<! -- Your comment goes here -->
<html>
<head>
<title> first page</title>
</head>
<body>
<h1> This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<hr/>
<p> This is my first paragraph </p>
<!-- Your comment goes here -->
</body>
</html>
<head>
<title> first page</title>
</head>
<body>
<h1> This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<hr/>
<p> This is my first paragraph </p>
<!-- Your comment goes here -->
</body>
</html>
Monday, 21 January 2019
css, Html
Output
Basic Knowledges
January 21, 2019
Horizontal Lines
To create a horizontal line use the <hr/> Tag.
<html>
<head>
<title> first page</title>
</head>
<body>
<h1> This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<hr/>
<p> This is my first paragraph </p>
</body>
</html>
Input<head>
<title> first page</title>
</head>
<body>
<h1> This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<hr/>
<p> This is my first paragraph </p>
</body>
</html>
Output
Sunday, 20 January 2019
Basic Knowledges
January 20, 2019
HTML Headings
HTML include six level of headings, which are ranked according to importance.
There are <h1>, <h2>, <h3>, <h4>, <h5> and <h6>
For example
<html>
<head>
<title> first page </title>
</head>
<h1> This is heading 1 </h1>
<h2> This is heading 2 </h2>
<h3> This is heading 3 </h3>
<h4> This is heading 4 </h4>
<h5> This is heading 5 </h5>
<h6> This is heading 6 </h6>
</body>
</html>
Input
Output
Friday, 18 January 2019
Basic Knowledges
January 18, 2019
Single Line Break
Use the <br/> Tag to add a single line of text without starting a new paragraph.
👉The <br/> Element is an empty HTML element. It has no end tag.
For example:-
👇👇👇👇
<html>
<head>
<title> First page
</title>
</head>
<body>
<p> This is my first paragraph </p>
<p> This is my second paragraph </p>
<p> This is a <br/> line break </p>
</body>
<html>
Subscribe to:
Posts (Atom)