Source Code

index.html (version 1)

<!DOCTYPE html>

<html lang="en">
    <head>
        <title>Hello, World!</title>
    </head>
    <body>
        Hello, World!
    </body>
</html>

style.css

body {
  background-color: #f0f0f0;
  color: #333;
}

.container {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  width: 50%;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

a {
  color: blue;
  text-decoration: none;
}

index.html (version 2)

search.html

app.py (version 1)

app.py (version 2)

home.html

app.py (version 3)

index.html (version 3)

app.py (version 4)

index.html (version 4)

Last updated