baby Steps To Web Development
You can literally write HTML anywhere.
However, there are dedicated software like code editors and text editors designed to write code (HTML):
<!DOCTYPE html>
<html>
<head>
<title>PAGE</title>
</head>
<body>
<h1> MY FIRST PAGE </h1>
<p> Today is a monumental day, the day i become a developer</p>
</body>
</html>
<p>
- Paragraph<a>
- Link<img>
- Image<div>
- Division<span>
- Inline containerhref
- Hyperlink referencesrc
- Sourcealt
- Alternative textclass
- CSS classid
- Unique identifierHTML headings are defined with the <h1>
to <h6>
tags.
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
HTML provides two types of lists: unordered and ordered.
Unordered lists are created using the <ul>
tag:
<ul>
<li>First item</li>
<li>Second item</li>
</ul>
Ordered lists are created using the <ol>
tag:
<ol>
<li>First item</li>
<li>Second item</li>
</ol>
Links are defined with the <a>
tag, using the href
attribute to specify the URL.
<a href="https://www.example.com">Visit Example.com</a>
Images are defined with the <img>
tag, using the src
attribute to specify the image source and the alt
attribute to provide alternative text.
<img src="image.jpg" alt="Description of image">
<img>
tagalt
attribute for your imageFile paths describe the location of a file in a web site's folder structure.
Absolute file paths provide the full URL to a file:
<img src="https://www.example.com/images/picture.jpg" alt="Example Image">
Relative file paths specify the location relative to the current file:
<img src="images/picture.jpg" alt="Example Image">
Create a personal webpage about yourself, including:
Any questions?