Starting with Html5

Introducing Html5 and CSS3

Hello everyone this is the place to learn all the intresting coding stuffs...

Starting with the HTML5 and CSS3 ......

<!DOCTYPE html>
<html>
<head>
<title>Title will be here</title>
</head>
<body>

<p>This is body which contains aal the data. And this p-tag is for paragraphs</p>
<b>MAaking text bold</b><
<i>Italic tag</i>
<u>Underline text</u>
<hr>To draw horizontal line
<marquee>MOving text</marquee>
<h1>Header 1</h1>
<h2>Header 2</h2> upto <h6>Last header</h6>
to break a line <br>

Introducing lists :
unordered list : ul
list items : li

<ul>
<li>First item</li>
<li>second</li>
</ul>

ordered list : ol

<ol>
<li>see difference</li>
<li>lists are numbered</li>
</ol>

css in html :
name the tag and define properties
<style >
p
{
height: 400px;
width: 400px; 
}
</style>
</body>
</html>
save this file with filename.html and see in the browser to find the output....
You can check out my YouTube video for further explanation or go to my channel xcoder99.


If you want to get the video in hindi :

Comments