How To Learn Html Basic ? Ex: Heading, Pragraph, Link up, Set Image.
Example
1 How to learn html heading 2 How to learn Html pragraph 3 How to learn Html links 4 How to learn Html Images.
Html Heading
Html headin are difined <h1> To <h6> tags
Like this picture..
Html codes:<!DOCTYPE html>
<html>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>
Save in notepad with html format then open the file with your browser.This file show in the browser like this picture..
Html Pragraph
Html Pragraph are defined <p> tags. Like this picture.
The picture show code:Open your notepad and type this code.
<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</body>
</html>
Now save html format and open the html file in your internet browser.The browser show like this picture.
<html>
<body>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</body>
</html>
Now save html format and open the html file in your internet browser.The browser show like this picture.
Html Links:
How i can link up in html for solotion from here.
Html links are defined <a href="link">This is a link<a/> Tags. Like this picture.
Open your notepad and type this code OR
<!DOCTYPE html>
<html>
<body>
<a href="akashlove.blogspot.com">akashlove</a>
</body>
</html>
<html>
<body>
<a href="akashlove.blogspot.com">akashlove</a>
</body>
</html>
You can change Code: akashlove.blogspot.com and akshlove.
Coppy this code and save in notepad with html format. Then open html file and show this file in your browser like this picture..
Html Image:
How i can set up a imagae in my website in html? Get Solution from here.
Solution
Html image defined <img src="Browse Image" weidth"imaze size" height"image size">
Like this image..
Open your notepad write this code like this image Or
<!DOCTYPE html>
<html>
<body>
<img src="Akash Logo.jpg" width="104" height="142">
</body>
</html>
Copy this link and save html format nad then open in your beowser.
<html>
<body>
<img src="Akash Logo.jpg" width="104" height="142">
</body>
</html>
Copy this link and save html format nad then open in your beowser.
You can change code "Akash logo.jpg" and width height.
Your browser show like this image..
Pls see the next HTML Posts for Html learn.
N:B: The tutitorial given by web tutorials .....