Hey Guys,
Today we will start with HTML - Hyper Text Markup Language. It is called the Skeleton of any web page. HTML combined with CSS and JS makes a perfect webpage that can be static.
HTML consists of lots and lots of tags to customize the web page to our desired output.
We have boilerplate code for HTML in which we will be writing entire html code.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
- Doctype is which says it is a
html
document. - The
<head>
tag contains all the metadata and title of the page. - The
<body>
is where the entire page lies. - Every tag will be having a closing tag and some tags are autoclosed.
Most used tags
<h1>
- Heading 1<h2>
- Heading 2<h2>
- Heading 3<h3>
- Heading 4<h4>
- Heading 5<h5>
- Heading 6<p>
- Paragraph tag<b>
- Bold tag<u>
- underline tag<strike>
- It strikes the text<a href=""></a>
- This is anchor tag<li>
- List item tag<ol>
- Ordered list tag<ul>
- Unordered list tag<Marquee>
- Scrolling text tag<br>
- Break tag<img>
- image tag<link>
- Used to link files from external source<hr>
- Horizontal rule tage<form>
- Create html form for user<input>
- gets input data from user<option>
- Used to select option from dropdown- In
<Input>
we havecheckbox
andradio
buttons
$$ To be Continued $$