<aside> 💡

Syllabi ~ HTML, CSS, clone vs code website and zerodha website

</aside>

Basics of HTML

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="doc">
        <h1>hi there how are you</h1>
    </div>
</body>
</html>

Must know tags of HTML

  1. div, span
  2. head
  3. body
  4. h1, h2, h3, h4, h5, h6
  5. b, i, u
  6. a
  7. img
  8. input
  9. button
  10. br

Their sysntax

<html>
	<title>
		Visual Studio Code - Code Editor
	</title>
</html>
<body>
	<div>
		<span>Visual Studio Code</span>
		<a href="/"><b>Docs</b></span> 
		<a href="/"><i>Updates</i></span> 
	</div>
	<br/>

	<div>
		<a href="/">Version 1.82</a> is now available! Read about the new features and fixes from July.
	</div>

	<br/>
</body>