Skip to content

Instantly share code, notes, and snippets.

@timjb
Created October 22, 2011 16:45
Show Gist options
  • Select an option

  • Save timjb/1306192 to your computer and use it in GitHub Desktop.

Select an option

Save timjb/1306192 to your computer and use it in GitHub Desktop.
HTML-Kurs
<!doctype html>
<html>
<head>
<title>Erstes Beispiel</title>
<style>
body {
background: rgb(200, 200, 0);
font-size: 100px;
font-family: sans-serif;
}
img {
border: 5px solid brown;
}
img:hover {
border-color: green;
}
</style>
</head>
<body>
<p>Hallo <strong>Welt</strong>! Wie geht's dir?</p>
<p>
<a href="zwei.html">
<img src="Spaceflare.jpg" width="600" height="400" />
</a>
</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Zweites Beispiel</title>
</head>
<body>
<ul>
<li>
<a href="index.html">Zur Startseite</a>
</li>
<li><a href="http://facebook.com/">Facebook</a></li>
<li>
<ol>
<li>42</li>
<li>Bar</li>
</ol>
</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment