Learn HTML Basic
Anyone check the HTML and JavaScript cope of any website in browser using Inspect element button (ctrl+shift+i). Inspect element button can found on clicking right click of mouse in browser such as google chrome, Microsoft edge etc.
HTML :- Car Body
CSS :- Paint on Car
JavaScript:- Car Engine
HTML Element = Start Tag + Content + End tag
! <Emmet Abbreviation> that is given below
<!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>
<p>lorem30</p> :- to make any paragraphs using random words
<br> br tag to break any line
<hr> hr tag to make horizontal line
Press alt for multiple cursors in VSCode
Anchor tag:-
input
<a href="https://example.com">Website</a>
<a href="mailto:deepaktewatia01@gmail.com">Email</a>
<a href="tel:+918398979594">Phone</a>
output
You can reach Michael at:
Comments
Post a Comment