Posts

Showing posts from June, 2022

Different Types Of HTML Tags

 HTML Tags Tag Description <a> Defines a hyperlink. <abbr> Defines an abbreviated form of a longer word or phrase. <acronym>  Defines an acronym. Use  <abbr>  instead. <address> Specifies the author's contact information. <applet>  Embeds a Java applet (mini Java applications) on the page. Use  <object>  instead. <area> Defines a specific area within an image map. <article>   Defines an article. <aside>   Defines some content loosely related to the page content. <audio>   Embeds a sound, or an audio stream in an HTML document. <b> Displays text in a bold style. <base> Defines the base URL for all relative URLs in a document. <basefont>  Specifies the base font for a page. Use CSS instead. <bdi>   Represents text that is isolated from its surrounding for the purposes of bidirectional text formatting. <bdo> Overrides the current text direction. <big>  Displays text in a large size. U

How to write HTML code??

Image
Tutorial This is basic structure of HTML code < html > < head > < title > </ title > </ head > < body > </ body > </ html >   The HTML code begins with <html> and ends with </html> . And the title of your document is between <head> & </head> using<title> & </title> tag.  The visible part of HTML document is between <body> & </body> tag. Example < html > < head > < title > TJ5 Server </ title > </ head > < body > Welcome this is my first paragraph </ body > </ html > Output In next article we will learn about different types of tags in HTML. If it is helpful for you then do let me know in comment section below👇 Tejas Dhodi👦 Tue, 28June 2022

Features and Advantages of HTML

 Features and Advantages of  HTML  The HTML features are as follows: Simple & User Friendly Search Engine Optimization Client side Data Storage Platform Independent Simple and User Friendly                    HTML is easy to understand as we write HTML program using different tags. They also enables browser to apply CSS to the digital documents. Search Engine Optimization                 It means having a page which is available on different search engines such as Google , Yahoo etc. For example this page is also search engine optimizable as you search on your browser about the features of HTML and you found this. Client Side Data Storage                 HTML5 comes with essential improvements in storage capabilities on the  client’s side . The  local Storage  and  session Storage  are crucial features that help developers store information on the client’s side. Platform Independent                  HTML runs on a browser and you can find browser almost on any device with sim

Introduction to HTML

Introduction to HTML What is HTML? HTML stands for Hyper Text Markup Language. HTML is used to create the structure of website. HTML refer step by step procedure. HTML  is mainly consist of series of elements. HTML is a standard language. Structure of HTML < html > < head > < title > </ title > </ head > < body > </ body > </ html > <html> : root element of the page. <head> : It is a meta data of page or it contains the meta information about the page. <titile> : It is used to declare the title of your page(Title Bar). <body> : It will contain the description of the page or whatever information you want to add to                    your page </html>, </head>, </title>, </body> : This is used to the close the portion of your element. By Tejas Dhodi👦 Sun ,26June 2022 If it is helpful for you please do let me know in comment section👇