Initial commit

solution
Colt 10 years ago
commit ca07b4c73d
  1. BIN
      .DS_Store
  2. BIN
      images/beer.jpeg
  3. BIN
      images/honey.jpeg
  4. BIN
      images/milk.jpeg
  5. BIN
      images/panic.jpeg
  6. BIN
      images/water.jpeg
  7. BIN
      images/wine.jpeg
  8. 38
      index.html

BIN
.DS_Store vendored

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The DOM playground</title>
<style>
.selected{ font-weight: bold;}
</style>
<script>
console.log("JavaScript is alive");
</script>
</head>
<body>
<div id="greeting">
Hello There!
</div>
<hr>
<div class="content">
Essentials:
</div>
<div id="essentials">
<ul>
<li>milk</li>
<li class="selected">honey</li>
<li>water</li>
<li>wine</li>
<li>beer</li>
</ul>
</div>
<div>
<img src="./images/honey.jpeg" height="60" width="60" alt="beer">
</div>
<input type="submit" value="Reset" id="reset"></input>
</body>
</html>
Loading…
Cancel
Save