Sep 22, 2024
.html
file to start coding.lang
).<title>HTML in 10 minutes</title>
.<h1>
to <h6>
for different heading levels.<h1>This is the first heading</h1>
.<p>
to create paragraphs with padding.<br>
for line breaks.<div>
for sections or containers in HTML.<img>
to add images, specify source, width, height.<img src='logo.png' width='100' height='100'>
.<head>
section using <style>
tag.font-family: 'Courier New';
font-style: italic;
.