Hello Guys, welcome you to our HTML and CSS full course part 2. in it I will tell you mare info about HTML and just do a simple coding...
HTML:-
Guys Html is starts with <html> tag. all the other coding is written with in the <html> tag.Although we have to write <!doctype html> before writing <html>tag. because we have to declare which type of document we are writing For example:-
<!docktype html>
<html>
....all the other coding is written within these two tags like head tag or body tag.
</html>
<head> tag:-
After <html> tag we have to write head of our website. all the scripts ,CSS link file, other links,Titles etc are written in the head tag.
LIKE:-
<html>
<head>
<h1>HTML and CSS course part 2</h1>
</head>
</html>
like this coding.....
<body> tag :-
body tag is written after head tag. This contains visual structural elements.
Headings,paragraphs,lists,images,and links etc are written in the body tag.
Create your first Html page :-
In the editor create a simple webpage with the above tag that we have discussed :-
<!doctype html>
<html>
<head>
</head>
<body> Html and Css full course part 2
</body>
</html>
and save it and open it in your browser.....
Give a title to your webpage:-
We can give a title to our webpage just by using the <title> tag
in head tag. let me show you :-
<!doctype html>
<html>
<head>
<title> First page</title>
</head>
<body> Html and Css full course part 2
</body>
</html>
CSS:- Css is used for designing our page and makes our page looks very impressive.With CSS we can make a very beautiful, responsive, animation website.
I will tell you that how to use CSS after HTML course because to use css we need to learn HTML first and then we can understand that how CSS works.
Guys toaday that's all, If you like our blog post please like our facebook page for next upcoming posts of this series for full course.
Video is comming Soon .......
Who wants a full detailed video on these topics? comment me fast ...





0 Comments