Skip to content

This repo is Notes For the imp topics learned in the process of learning HTML and JAVASCRIPT all the code is written by me based on what i concluded from what i learned..

Notifications You must be signed in to change notification settings

VinayJango/Learning_Path_Html_Js

Repository files navigation

Project Screenshots

Screenshot (45)

Screenshot (40)

Screenshot (44)

Screenshot (46)

Screenshot (41)

Screenshot (43)

Points

What is HTML ?

HTML Stands for Hypertext Markup Language it is used in web pages and websites. html is easy to learn language

1.HTML is the stnadard markup language for creating webpages. 2.HTML describes the structure of the webpage 3.HTML consists of a series of elements 4.HTML elements tell the browser how to display the content. 5.HTML elements label pices of content such as "This is a heading", "this is a paragraph", "this is a link", etc.

A Simple HTML Document As a EXAMPLE!

<title>Give Page Title here!</title>

My first heading!

My first Paragraph!

EXPLAINED CODE HERE:-

the element declares that this is a HTML5 type of document.

the element is the root element of an HTML page.

the element contains meta info about the HTML page.

the <title> element specifies a title for the HTML page.

the element defines the document's body and is a container for all the browser's title bar or in the page's tab.

the

element defines a large heading.

the

element defines a Paragraph.

What is an HTML ELEMENT ?

An HTML ELEMENT is defined by a Start tag , some content, and a End tag.

FOR EG:- <start_tag>SOME CONTENT</End_tag>

HTML PAGE STRUCTURE


A Basic Structure Of Html Page is as Follows:-

<title>Page title</title>

This is a heading

This is a paragraph.

This is another paragraph.


HTML Headings

HTML headings are defined with the

to

tags.

defines the most important heading.

defines the least important heading:-

STARTING POINT

HTML Headings

File: headings.html Note - HTML headings are defined with the

to

tags.

defines the most important heading.

defines the least important heading.

HTML Paragraphs

File: paragraph.html Note - HTML Paragraphs are defined using the

tag.

HTML STYLES

File: style.html Note - HTML Styles should be Defined in the Style="" tag.

HTML TEXT FORMATTING

File: formatting.html Note - HTML basic text Formatting is Shown here!

HTML TABELS

File: tabels.html Note - HTML Tabels are Defined using the ,, TAGS. EXAMPLE BELOW:-

HTML LINKS

File: links.html Note - HTML Links are Defined using the tag.

EXAMPLE - GOOGLE Links can also be beautified by CSS by following code of CSS: <style> a:link { color: aqua; background-color: black; font-family: 'Courier New', Courier, monospace; }

        a:visited {
            color: grey;
            font-family: 'Courier New', Courier, monospace;
        }

        a:active {
            color: cadetblue;
        }
    </style>

About

This repo is Notes For the imp topics learned in the process of learning HTML and JAVASCRIPT all the code is written by me based on what i concluded from what i learned..

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages