Computer Science, asked by npungpung8128, 1 year ago

html coding on the topic swatch bharat

Answers

Answered by hackerfamily35
6

Answer:

HTML : Hypertext Markup Language

Computer programming language use to create webpages and share their information in an organised way over the internet.

#HTML webpages can be created in a simple notepad application which can be found pre-install in all windows OS

#It is a tag based language, different-different tags are used for different purposes or to add different elements. Such as <img>, <hr>, <html> & <body> etc.

#It also have some add-ons such as CSS & JS & PHP etc.

Explanation:

Code to create a webpage for "SWATCH BHARAT" :

<HTML>

<HEAD><TITLE>(write the title of your webpage for URL bar)</TITLE></HEAD>

<BODY>(start the body, all the elements will be added into it)

<H1><b><u> SWATCH BHARAT </u></b></H1>

<hr>(use to divide the elements of the webpage)

(now you can use any tags acc. to your requirement such as to add an image use <img src="{source of the image}"> or a paragraph <p>{your text}</p>, use the apropriate attributes for all the tags you use)

#NOTE: YOU CAN ALSO USE ADD-ON LANGUAGES LIKE CSS OR JAVA-SCRIPT OR PHP

</Body>

</HTML>

Similar questions