Oct 3, 2024
<h1>
: Header tags for titles.<p>
: Paragraph tags for text.<a>
: Anchor tags for hyperlinks.index.html
file as the homepage.<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
</head>
<body>
<h1>This is an H1 heading</h1>
<p>This is a paragraph of text.</p>
</body>
</html>
<head>
: Contains metadata, title, etc.<body>
: Contains visible content.<h1>
to <h6>
for headings.<p>
for paragraphs.<br>
tag.<hr>
tag for horizontal lines.<b>
, <i>
, <u>
, etc.<a>
tag with href
attribute.<img>
tag with src
attribute, include alt
for accessibility.selector {
property: value;
}
<style>
tags), or external (link to CSS file).@keyframes
.