Correction
Easy Board
<!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>Dev-i-learn</title>
<link rel="stylesheet" href="data/css/style.css">
</head>
<body>
<div class="content-container">
<a href="page.html" title="Link to some page">
Click here
</a>
<img src="data/img/first-image.jpg">
<p>This is my first paragraph</p>
</div>
</body>
</html>
Explanations
- <title>: The <title> tag defines the title of the document. The title must be text-only, and it is shown in the browser's title bar or in the page's tab.
- <div>: The <div> tag defines a division or a section in an HTML document. It's used a lot to apply class or id to it, then style it with CSS or manipulate it with JavaScript.
- <a>: The <a> tag defines either a hyperlink, which is used to link from one page to another. Either an id, which is used to scroll to a spicific section.
- <img>: The <img> tag is used to embed an image in an HTML page.
- <p>: The <p> tag defines a paragraph.
Get more fun!
Create your own Board
In progress..
Download more Boards
In progress..
Create your own Board
In progress..
Download more Boards
In progress..