How to create a HTML webpage on Computer/Mobile?
How to create HTML in Computer
- Open Search option
- Search notepad
- Open Notepad
How to create HTML page in Android
- Click on link to download app 👇🏻
- https://play.google.com/store/apps/details?id=com.techbajao.htmleditor
- (HTML 5 based) for phone
How to Save a HTML document in Computer
*To save a document in html form its domain extension should be .html
Q.What is HTML?
A.HTML means Hyper Text Markup Language.It is used for developing Webpage
It is a container tag and use Syntax-
<HTML>
-------------------
--------------–----–--------
</HTML>
Q.Head <HEAD> Tag :
A.It is placed between the HTML and TITLE tag.It is a container Tag.Syntax=>
<HTML>
<HEAD>
----------------------
-----------------------
</HEAD>
</HTML>
Q.Title <TITLE> tag :
A.Used between HEAD and BODY tag.It is a container tag.
Syntax:
<HTML>
<HEAD>
<TITLE>
----------------------
</TITLE>
-----------------------
</HEAD>
</HTML>
Q.Body <BODY> tag :
A.Contain main content of page.It is container tag.
Syntax:
<HTML>
<HEAD>
<TITLE>
----------------------
</TITLE>
<BODY>
-----------------------
</BODY>
</HEAD>
</HTML>
Q.Font tags
A. <B>----------</B> for BOLD
<I> --------</I> for ITALIC
<U>-----------</U> for UNDERLINE
Example:
Input:::
<HTML>
<HEAD>
<TITLE>
My first webpage
</TITLE>
<BODY>
<B><I><U>Displayed content will be here.
</B></I></U>
</BODY>
</HEAD>
</HTML>
Output:::
My first Webpage
Displayed content will be here.
"Above listed tags are basic tags there too many for example":
<P>--------</P> For paragraph
<A Href="www.google.com"> for hyperlinks
Etc.
Comments
Post a Comment