HTML is an one of the language, this language is used to design website. CSS is used to styling the website as per our requirement.
HTML:- Hyper Text Markup Language
CSS :- Cascading Style Sheet
VIDEO: HTML and CSS Class #01
Mian tags for website coding:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header></header>
<section></section>
<footer></footer>
<header></header>
<section></section>
<footer></footer>
</body>
How to create title in website:
<!DOCTYPE html>
<html>
<head>
<title>HTML AND CSS CLASS-1</title>
</head>
<body>
</body>
</html>
OUTPUT IMAGE:
OUTPUT IMAGE:
How to write content in website:
<!DOCTYPE html>
<html>
<head>
<title>HTML and CSS Class #01</title>
</head>
<body>
<header>
<h1>How to write content</h1>
</header>
<section>How to write content in website</section>
<footer>COPYRIGHT ©2019, all rights reserved</footer>
<header>
<h1>How to write content</h1>
</header>
<section>How to write content in website</section>
<footer>COPYRIGHT ©2019, all rights reserved</footer>
</body>
</html>