Pages

Tuesday, January 15, 2019

How to Italicized a paragraph

To italicized a paragraph, we will use these tags <i></i>. Any paragraph which we want to italicized, we write in these tags like this <i><p> Need to Italicized </i></p>. We will check here that how we can use italicized tag.
We have to write all paragraph styling in body tag.

<body>
<i><p>This is italicized paragraph</p></i>
</body>


This will show the following result.....


HTML heading and Paragraph

For HTML Heading and paragraph, we have to write all the html heading and paragraph in a body tag.
In <body> Tag we will write like this "<h1>Write heading here</h1>. If we need more bold and bigger size of heading then we can increase the <h(number)>. For example if we need large size of heading, we will write like this <h3></h3>.
For the the paragraph we will like this <p>Some text here...</p>

<html>
<head>
    <title>this is first web page</title>
</head>
<body>
    <h1>First tutorial</h1>
<p>This is paragraph</p>
</body>
</html>

The code will show the following result...

First tutorial

This is paragraph

Monday, December 17, 2018

First HTML page

Complete html code enclose between <html> code here </html>. In starting of  html tutorials we will learn that how to show web page 'title' and heading of the web page. Here is an example of html title and heading.


Example:
<html>
         <head>
           <title> this is first web page </title>
         <body>
        <h1>First tutorial </h1>
      </body>
</html>





This code will show the following result


Sunday, December 16, 2018

Compiler for HTML

This is an front end html language, mean website that user can see. Learning an html is an very easy. First of all we need compiler where we can write html code and check it by compiling the code. In these html tutorials we use Notepad + +. You can install by clicking here....