Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Links

HTML links are created using the <a> tag.

Example

<a href=”https://www.code7school.com”>This is a link</a>

The destination of the link is indicated within the href attribute.

Attributes are employed to furnish supplementary details about HTML elements.

You’ll delve deeper into attributes in a subsequent chapter.

 

Click to Learn

 

HTML Images

HTML images are declared using the <img> tag.

Attributes such as source file (src), alternative text (alt), width, and height are included.

Example

<img src=”code7school.jpg” alt=”code7school.com” width=”104″ height=”142″>

 

Click to Learn