8
By Brieya

By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects

Embed Size (px)

Citation preview

Page 1: By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects

By Brieya

Page 2: By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects

What is HTML

•Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects on World Wide Web pages.•HTML is often used for making

webpages.

Page 3: By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects

what is <html>

• The opening tag is made up of a left angle bracket, then the name of the tag, and then a right angle bracket. There are no spaces, and it's best if the name of the tag is written in lower-case letters. • This tag has indicated the beginning

of a nested series of instructions.

Page 4: By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects

What is </html>

• This closing tag defines the end of the HTML instructions on the page. It's the same as the opening tag except that there's a forward slash directly after the left angle bracket. • Think of the opening and closing HTML

tags as the highest level of nesting inside the document. Everything else in the document will be written between these markers.

Page 5: By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects

What a html tag looks like.

Page 6: By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects

When the code was run in IE (internet explorer)

Page 7: By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects

Other tags(and what they mean)• <body> = Defines the document's body.• <h1> to <h6> = Defines HTML headings.• <head> = Defines information about the document.• <img> = Defines an image.• <link> = Defines the relationship between a document

and an external resource (most used to link to style sheets).• <ol> = Defines an ordered list.• <title> = Defines a title for the document.

• And there are plenty more.

Page 8: By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects

Tips for html• Notepad++ was made by an

American so remember that when you use the tags spell the words in American.(e.g. color.)

• Planning: As always, planning is the number one priority. Once you solve your design challenges on paper, you are ready to build your site(s).

• When finishing a tag make sure u check to see if it works and how you want it to look.

• First, remember that most tags must be eventually closed. The syntax would be: <tag> CONTENT </tag>.

• The first tag in your website should be <html>, which starts the HTML site.

• Immediately after this should come the <head> tag.