11
Notepad ++ Tutorials HTML Nzb Publications 1

Notepad ++

Embed Size (px)

DESCRIPTION

A complete guide to Notepad ++

Citation preview

Notepad ++ TutorialsHTMLNzb Publications

Table of ContentsINTRODUCTION TO HTML 4 Chapter 1HTML Basics: 51-Headings 2-Paragraphs 3-Font Types4-Images5-Breaks6-Horizontal Lines7-Custom Text8-LinksChapter 2HTML Elements: 81-The Element2-The Element3-The Element4-The Element5-The elementChapter 3Advanced HTML: 91-HTML Document Starting2-Columns in Html3-Cool Fonts4-Marquee Text5-Tables

INTRODUCTION TO HTMLWhat is HTML?HTML is a language for describing web pages.HTML stands forHyperTextMarkupLanguageHTML is not a programming language, it is amarkup language A markup language is a set ofmarkup tags The purpose of the tags are todescribe page content HTML Tags?HTML markup tags are usually called HTML tagsHTML tags are keywords (tag names) surrounded byangle bracketslike HTML tags normallycome in pairslike < > and The first tag in a pair is thestart tag,the second tag is theend tag The end tag is written like the start tag, with aforward slashbefore the tag nameStart and end tags are also calledopening tagsandclosing tagsHTML Elements"HTML tags" and "HTML elements" are often used to describe the same thing.But strictly speaking, an HTML element is everything between the start tag and the end tag, including the tags

Chapter 1 : HTML Basics1- Headings:HTML Headings Are Defined With The To Tags.Ex: This is a heading2- Paragraphs:HTML Paragraphs Are Defined With The Tag.Ex: This is a Paragraph3- Font Types:HTML Fonts Are Defined With The These Tags.Ex:Defines bold textDefines big text Defines emphasized text Defines italic text Defines small text Defines strong text Defines subscripted text Defines superscripted text Defines Underlined text 4- Images:HTML Images Are Defined With The TagEx: This Is A Picture Link

Chapter 2 : HTML Elements1- The Element:Used To Make A HTML Document This Is Inside The Webpage 2- The Element:Used For The Webpages Body (Text Or Images) Body Text 3- The Element:Used To Add A Heading Heading 4- The Element:Used To Add A Tab Name Heading 5- The Element:Used To Make A Paragraph Paragraph

Chapter 3 : Advanced HTML1- Html Document Starting:Used To Describe What Kind Of Document It Is This Is Inside The Webpage 2- Columns In Html:Used To Write Text In A ColumnYour Colum Line Here3- Cool Text:1-Text with a line through the middle2-Text with an overline3-Blinking text (Works In Mozilla)4-HtmlHighlited example3-Marquee Text:1- Text... going up!3-

4-Tables:

Table HeaderTable HeaderTable cell 1Table cell 2Table cell 3Table cell 4

3