Tag Archives: html

HTML Lessons: Anchor Tag

We will tackle the anchor tags. Anchor tags are used to link pages.
This is the basic anchor format:

<a href="http://where-do-you-want-to-go.com">Link Text</a>

Attributes
There are certain attributes that affect how a link works.
target
target is used to specify where the the HTML document will should load. Target names should be used to identify the the target. This attribute can be [...]

HTML Lessons: HTML Introduction

HTML is used for creation of web content. HTML defines elements which assigns some semantic meaning to content. For example, (<strong></strong>) gives strong impression on a particular word or phrase.
An HTML document is a text file that has the information that you want to publish with the suitable semantic instructions about the structure of [...]