g n i m m a r g o r p
play

G N I M M A R G O R P By Wyatt and Sam B E W - PowerPoint PPT Presentation

G N I M M A R G O R P By Wyatt and Sam B E W BACKGROUND INFO: You can write any of this code on your own computer! As long as you save a file with the extension .html, you can open it with a web browser and it will show up


  1. G N I M M A R G O R P By Wyatt and Sam B E W

  2. BACKGROUND INFO: ➢ You can write any of this code on your own computer! ➢ As long as you save a file with the extension .html, you can open it with a web browser and it will show up exactly how I've demoed it here.

  3. WHAT IS HTML? • HTML is a language for formatting documents. • It's made up of elements called "tags", which are just special words enclosed in angle brackets. • Tags give formatting to everything enclosed within them. For instance, the tag with the letter "p" inside means "everything here is a paragraph" and the letter "i" means "everything here is italic." • You "open" a tag by writing out the name of the tag like this: " <p> " • You "close" a tag by writing it out like this: " �<0 p> " • You can nest tags inside one another.

  4. WHAT IS HTML? • HTML is a language for formatting documents. • It's made up of elements called "tags", which are just special words enclosed in angle brackets. • Tags give formatting to everything enclosed within them. For instance, the tag with the letter "p" inside means "everything here is a paragraph" and the letter "i" means "everything here is italic." • You "open" a tag by writing out the name of the tag like this: " <p> " • You "close" a tag by writing it out like this: " �<0 p> " • You can nest tags inside one another. <p> This is a paragraph, and <i>this is in italics �<0 i> but this is not. �<0 p>

  5. WHAT IS HTML? • HTML is a language for formatting documents. • It's made up of elements called "tags", which are just special words enclosed in angle brackets. • Tags give formatting to everything enclosed within them. For instance, the tag with the letter "p" inside means "everything here is a paragraph" and the letter "i" means "everything here is italic." • You "open" a tag by writing out the name of the tag like this: " <p> " • You "close" a tag by writing it out like this: " �<0 p> " • You can nest tags inside one another. <p> This is a paragraph, and <i>this is in italics �<0 i> but this is not. �<0 p>

  6. WHAT IS HTML? • HTML is a language for formatting documents. • It's made up of elements called "tags", which are just special words enclosed in angle brackets. • Tags give formatting to everything enclosed within them. For instance, the tag with the letter "p" inside means "everything here is a paragraph" and the letter "i" means "everything here is italic." • You "open" a tag by writing out the name of the tag like this: " <p> " • You "close" a tag by writing it out like this: " �<0 p> " • You can nest tags inside one another. <p> This is a paragraph, and <i>this is in italics �<0 i> but this is not. �<0 p> This is a paragraph, and this is in italics but this is not.

  7. A SIMPLE PAGE This is an example of a simple webpage written in HTML: <!DOCTYPE html> <html> <head> <title> Simple Webpage �<0 title> �<0 head> <body> <h1>This is the page header �<0 h1> <p>This is the body text in the webpage. �<0 p> �<0 body> �<0 html>

  8. A SIMPLE PAGE This is an example of a simple webpage written in HTML: <!DOCTYPE html> This lets the browser know that our document is written in HTML. <html> <head> <title> Simple Webpage �<0 title> �<0 head> <body> <h1>This is the page header �<0 h1> <p>This is the body text in the webpage. �<0 p> �<0 body> �<0 html>

  9. A SIMPLE PAGE This is an example of a simple webpage written in HTML: <!DOCTYPE html> This lets the browser know that our document is written in HTML. <html> This tag says "hey, I'm an HTML document!" It always opens the page. <head> <title> Simple Webpage �<0 title> �<0 head> <body> <h1>This is the page header �<0 h1> <p>This is the body text in the webpage. �<0 p> �<0 body> �<0 html>

  10. A SIMPLE PAGE This is an example of a simple webpage written in HTML: <!DOCTYPE html> This lets the browser know that our document is written in HTML. <html> This tag says "hey, I'm an HTML document!" It always opens the page. <head> This tag contains the page title, and sometimes other information for the browser. <title> Simple Webpage �<0 title> �<0 head> <body> <h1>This is the page header �<0 h1> <p>This is the body text in the webpage. �<0 p> �<0 body> �<0 html>

  11. A SIMPLE PAGE This is an example of a simple webpage written in HTML: <!DOCTYPE html> This lets the browser know that our document is written in HTML. <html> This tag says "hey, I'm an HTML document!" It always opens the page. <head> This tag contains the page title, and sometimes other information for the browser. <title> Simple Webpage The title tag determine what shows up on the tab bar in your browser. �<0 title> �<0 head> <body> <h1>This is the page header �<0 h1> <p>This is the body text in the webpage. �<0 p> �<0 body> �<0 html>

  12. A SIMPLE PAGE This is an example of a simple webpage written in HTML: <!DOCTYPE html> This lets the browser know that our document is written in HTML. <html> This tag says "hey, I'm an HTML document!" It always opens the page. <head> This tag contains the page title, and sometimes other information for the browser. <title> Simple Webpage The title tag determine what shows up on the tab bar in your browser. �<0 title> �<0 head> <body> All of the other content in your webpage is inside of the body tags. <h1>This is the page header �<0 h1> <p>This is the body text in the webpage. �<0 p> �<0 body> �<0 html>

  13. A SIMPLE PAGE This is an example of a simple webpage written in HTML: <!DOCTYPE html> This lets the browser know that our document is written in HTML. <html> This tag says "hey, I'm an HTML document!" It always opens the page. <head> This tag contains the page title, and sometimes other information for the browser. <title> Simple Webpage The title tag determine what shows up on the tab bar in your browser. �<0 title> �<0 head> <body> All of the other content in your webpage is inside of the body tags. <h1>This is the page header �<0 h1> H1 is the largest size of title. <p>This is the body text in the webpage. �<0 p> �<0 body> �<0 html>

  14. A SIMPLE PAGE This is an example of a simple webpage written in HTML: <!DOCTYPE html> This lets the browser know that our document is written in HTML. <html> This tag says "hey, I'm an HTML document!" It always opens the page. <head> This tag contains the page title, and sometimes other information for the browser. <title> Simple Webpage The title tag determine what shows up on the tab bar in your browser. �<0 title> �<0 head> <body> All of the other content in your webpage is inside of the body tags. <h1>This is the page header �<0 h1> H1 is the largest size of title. <p>This is the body text in the webpage. �<0 p> P is paragraph. �<0 body> �<0 html>

  15. A SIMPLE PAGE This is an example of a simple webpage written in HTML: <!DOCTYPE html> This lets the browser know that our document is written in HTML. <html> This tag says "hey, I'm an HTML document!" It always opens the page. <head> This tag contains the page title, and sometimes other information for the browser. <title> Simple Webpage The title tag determine what shows up on the tab bar in your browser. �<0 title> �<0 head> <body> All of the other content in your webpage is inside of the body tags. <h1>This is the page header �<0 h1> H1 is the largest size of title. <p>This is the body text in the webpage. �<0 p> P is paragraph. �<0 body> Remember to close all your tags at the end! (HTML is actually pretty forgiving if you forget, but it's good style to do so). �<0 html>

  16. This page shows up like this in a browser : <!DOCTYPE html> <html> <head> <title> Simple Webpage �<0 title> �<0 head> <body> <h1>This is the page header �<0 h1> <p>This is the body text in the webpage. �<0 p> �<0 body> �<0 html>

  17. This page shows up like this in a browser : <!DOCTYPE html> <html> <head> <title> Simple Webpage �<0 title> �<0 head> <body> <h1>This is the page header �<0 h1> <p>This is the body text in the webpage. �<0 p> �<0 body> �<0 html>

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend