Webbserver - Love Blomberg

Show sourcecode

The following files exists in this folder. Click to view.

public_html/gamla-kurser/webbutv1/ovningar/

baskod.html
bentogrid.html
bilder/
css/
gimp_logga.html
index.html
js/
meny1/
meny2/
ovning-flexbox.html
ovning0.html
ovning00.html
ovning1.html
ovning10.html
ovning11.html
ovning12.html
ovning2.html
ovning3.html
ovning4.html
ovning5.html
ovning6.html
ovning6b.html
ovning7.html
ovning8a.html
ovning8b.html
ovning9a.html
ovning9b.html
ovning9c.html
ovning9d.html
sida2.html

index.html

71 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="sv">
<link href="../css/css_index.css" rel="stylesheet" />
<style>
  .container {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;
  }

  #return {
    background-color: rgb(36, 36, 36);
    color: white;
  }

  li a {
    display: block;
    color: white;
    text-decoration: none;
  }
  li:hover {
    background-color: rgb(15, 15, 15);
    color: white;
  }
  ul {
    background-color: rgb(36, 36, 36);
    padding: 10px;
    border-radius: 5px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-style: 'Lucida Sans Unicode';
  }
  li {
    border: 2px solid white;
    list-style-type: none;
    display: block;
    text-align: left;
    padding: 10px;
    margin: 5px;
  }
</style>

<head>
  <meta charset="utf-8">
  <title>Länkar</title>
</head>

<body>
  <div id="background">
    <img src="../bilder/subaru.jpeg" alt="tobiaznarhanserminkod" class="stretch" />
    <!--<img src="https://cataas.com/cat/says/Tobias%20när%20han%20ser%20min%20kod" class="stretch" alt="bg" />-->
  </div>
  <h1>Övnings filer</h1>
  <div class="container">
    <div class="image">
      <img style="border-radius: 5px" src="https://media.giphy.com/media/3oKIPnAiaMCws8nOsE/giphy.gif" alt="coding-cat">
    </div>
    <ul>
      <li onclick=""><a href="./ovning0.html"> Övning 0 - Första hemsidan </a></li>
      <li><a href="./ovning00.html"> Övning 00 - Hemsida v2 </a></li>
      <li><a href="./ovning1.html">Övning 1 - Internets historia & fakta</a></li>
      <li><a href="./ovning2.html"> Övning 2 - CSS </a></li>
      <li><a href="./ovning3.html"> Övning 3 - Extern stilmall CSS</a></li>
    </ul>
  </div>
  <footer>
    <a id="return" href="../index.html">Tillbaka till startsidan</a>
  </footer>
</body>

</html>