index.html 988 Bytes
Newer Older
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
1 2 3 4
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
5
    <title>Film Review</title>
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
6 7 8 9
    <base href="/" />

    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link
10 11
      rel="stylesheet"
      href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
12
    />
13 14 15
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
    <link rel="icon" type="image/x-icon" href="assets/icons/logo.png" />
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
16
    <link
17
      href="https://fonts.googleapis.com/css2?family=Kanit:wght@200;300;600&display=swap"
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
18 19
      rel="stylesheet"
    />
20 21 22 23 24 25 26 27 28 29
    <style>
      body {
        background-image: url("assets/bg.png");
        background-repeat: no-repeat;
        background-attachment: fixed;
      }
      * {
        color: white;
      }
    </style>
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
30 31 32 33 34
  </head>
  <body>
    <app-root></app-root>
  </body>
</html>