Sunday, 10 September 2017

Using Style or editing default ?

Question:How to edit design of any heading, paragraph or image etc in HTML?
Answer: tagname here refers to the tag you are using like:paragraph,heading,etc. property can be any like height,width,color,bgcolor and value is the specification of that property.
like example:
<tagname style="property:value;">

Adding HTML image

Question:Adding image to a HTML page?
Answer:To add image to a HTML page just use the tag
<img src="source  of the image" width=" " height=" ">

Basics to HTML

Question:How to get started with basic HTML page basic?
Answer:
Important note:Recommendation is to use sublime text as a text editor tool.
<!DOCTYPE html>
<html>
<body>

<h1>Heading of your website</h1>

<p>Here write the content to be shown on the web page</p>

</body>
</html>

That's all go for your first web page.