1 / 11

HTML

HTML. Einführung. Was ist HTML?. HTML ist eine "Seitenbeschreibungssprache" HTML besteht aus "tags" <h1>Überschrift</h1> <p>Absatz</p> Sonderzeichen müssen umgewandelt werden. aus ü wird ü aus Ä wird Ä. Grundaufbau. < html > < head > < title> SEITENTITEL </title >

ulric-boyd
Download Presentation

HTML

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. HTML Einführung

  2. Was ist HTML? • HTML ist eine "Seitenbeschreibungssprache" • HTML besteht aus "tags" • <h1>Überschrift</h1> • <p>Absatz</p> • Sonderzeichen müssen umgewandelt werden. • aus ü wird &uuml; • aus Ä wird &Auml;

  3. Grundaufbau <html> <head> <title>SEITENTITEL</title> </head> <body> INHALT DER SEITE </body> </html>

  4. Wichtige "tags" - Überschrift <h1>Überschrift 1</h1> <h2>Überschrift 2</h2> <h3>Überschrift 3</h3> ... <h6>Überschrift 6</h6>

  5. Wichtige "tags" - Absatz <p>Hier steht ein Absatz.</p> <p>Hier steht ein Absatz<br /> mit Zeilenumbruch.</p>

  6. Wichtige "tags" - Links <a href="ZIEL">TEXT</a> • href bedeutet "Hyperlink Reference" • index.html • http://www.igs-list.de <a href=http://www.igs-list.de>meine Schule</a>

  7. Wichtige "tags" - Bild <img src="QUELLE" /> • src ist die Adresse (Quelle) des Bildes • fussball.jpg • http://www.igs-list.de/assets/templates/igs/images/logo.gif <img src="fussball.jpg" width="80" height="80" border="0" />

  8. Wichtige "tags" - Tabelle <table> <tr> <td>Zeile 1, Zelle 1</td> <td>Zeile 1, Zelle 2</td> </tr> </table>

  9. Strukturen Flache Struktur hierarchische Struktur

  10. Programme zur Webentwicklung • Kostenlose Tools • Notepad++ (Texteditor) • Nvue (WYSIWYG-Editor) • GIMP (Bildbearbeitung) • http://portableapps.com/de • Professionelle Tools • Dreamweaver (WYSIWYG-Editor) • Eclipse (Programmier-IDE) • PhotoShop (Bildbearbeitung)

  11. Download http://www.igs-list.de/netkom/downloads r.ahlborn@igs-list.de

More Related