130 likes | 276 Views
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:
E N D
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” • <bodybgcolor=“blue”> </body>
HTML • How to add an image: <imgsrc=“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>
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>
HTML • HTML is used for CONTENT and STRUCTURE of a webpage • It is not so good for STYLE