11
HTML AND THE WEB #FDOM

HTML and the web

  • Upload
    ipo

  • View
    23

  • Download
    0

Embed Size (px)

DESCRIPTION

HTML and the web. #FDOM. HTML. Hypertext Markup Language (It’s all a bunch of text in a whole lot of files!) Made up of < tags > < html > < img > < a > < ul > < ol > Made up of attributes =“ values ” < body bgcolor =“ blue ”> < /body >. HTML. HTML. HTML. How to add an image: - PowerPoint PPT Presentation

Citation preview

Page 1: HTML and the web

HTML AND THE WEB#FDOM

Page 2: HTML and the web

HTML

• Hypertext Markup Language

• (It’s all a bunch of text in a whole lot of files!)

• Made up of <tags>

• <html> <img> <a> <ul> <ol>• Made up of attributes=“values”

• <body bgcolor=“blue”> </body>

Page 3: HTML and the web

HTML

Page 4: HTML and the web

HTML

Page 5: HTML and the web

HTML

• How to add an image:

<img src=“dale.jpg” />• How to add a link:

<a href=“http://www.google.com">Google</a>• How to add a list:

<ol>

<li>List item 1</li>

<li>List item 2</li>

<li>List item 3</li>

</ol>

Page 6: HTML and the web

HTML

Page 7: HTML and the web

HTML

Page 8: HTML and the web

HTML• How to add a table:

<table width=“400” border=“1”>

<tr>

<td>Favorite Website</td>

<td>Favorite App</td>

<td>Favorite Podcast</td>

</tr>

<tr>

<td>daleblasingame.net</td>

<td>Cat Spanish</td>

<td>1310 The Ticket WTDS</td>

</tr>

Page 9: HTML and the web

HTML

Page 10: HTML and the web

HTML

Page 11: HTML and the web

HTML

• HTML is used for CONTENT and STRUCTURE of a webpage

• It is not so good for STYLE