Thursday, July 4, 2019

HTML Basics Concepts| Every Digital Marker Must Learn

HTML (Hyper Text Markup Language) is a computer language used to create web pages and web apps. HTML involves using tags–which are the shortcodes you’ll type into a text-file–which your browser will read and present visually. Basic HTML looks something like this


What does HTML do?

HTML allows you to manipulate structure the content of your webpage. You can structure your paragraphs and sections, delete unnecessary spacing, reformat embedded images, add hyperlinks, fix broken lists and tables, and much more.


1. What is METATAGS?

The metadata can be used by browsers (how to display content or reload the page), search engines (keywords), or other web services. HTML5 introduced a method to let web designers take control over the viewport (the user's visible area of a web page), through the <meta> tag

2. What is the TITLE TAG?

Related Terms. Union of the legal rights of ownership, possession, and custody, evidenced by a legal document (instrument) such as a bill of sale, certificate of title, or title deed.

3. What is HEADING TAG?

H1: The <h1> HTML tag is usually used for the title of a page or post and it is the first header visible on a page. The formatting of an h1 usually differs from the rest of the header tags found on a page (h2, h3, h4,h5,h6).

 4.HTML BASICS

__________________________________________________________________________

a)HTML DOCUMENTS

All HTML documents must start with a document type declaration: .
The HTML document itself begins with  and ends with the visible part of the HTML document is between  and 
.Example
<!DOCTYPE html>

<html>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>


b)HTML HEADINGS

HTML headings are defined with the  to  tags.Defines the most important heading.Defines the least important heading: 

Example   <h1>This is heading 1</h1>

          <h2>This is heading 2</h2>

        <h3>This is heading 3</h3>

c)HTML PARAGRAPHS

HTML paragraphs are defined with the  tag:

Example

<p>This is a paragraph.</p>

<p>This is another paragraph.</p>


d)ANCHOR TEXT HTML LINKS 

Anchor text is the clickable text in a hyperlink. SEO best practices dictate that anchor text  to be relevant to the page you are linking to rather than generic text

HTML links are defined with the  tag:

Example

&<a href="https://www.digitalittraining.com">This is a link</a>

e)HTML IMAGES

HTML images are defined with the tag.
The source file (src), alternative text (alt), width, and height are provided as attributes:

Example

<img src="www.123.com" alt="digitalittraining" width="104" height="142">
__________________________________________________________________________



No comments:

Post a Comment