index.html 1.83 KB
Newer Older
GitLab's avatar
GitLab committed
1
<!DOCTYPE html>
Faizi's avatar
Faizi committed
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>HFT AR Projects</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      text-align: center;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
    }
    header {
      background-color: #003366;
      color: white;
      padding: 20px 0;
      position: relative;
    }
    header img {
      position: absolute;
      right: 20px;
      top: 20px;
      width: 100px;
      height: 100px;
    }
    header h1 {
      margin: 0;
    }
    .content {
      margin: 20px;
    }
    .button {
      background-color: #003366;
      color: white;
      padding: 15px 25px;
      margin: 10px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
    }
    .button:hover {
      background-color: #0055aa;
    }
    footer {
      text-align: center;
      margin-top: 50px;
      padding: 10px;
      background-color: #003366;
      color: white;
    }
    footer a {
      color: white;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }
  </style>
</head>
<body>
  <header>
    <h1>Welcome to HFT AR Projects</h1>
    <img src="https://www.hft-stuttgart.de/typo3conf/ext/hft_sitepackage/Resources/Public/img/HFT_logo.svg" alt="HfT Stuttgart" />
  </header>
  <div class="content">
    <p>Click on one of the buttons below to explore the AR projects:</p>
    <button class="button" onclick="location.href='cube-project.html'">Cube Project</button>
    <button class="button" onclick="location.href='tap-to-place-project.html'">Tap to Place Project</button>
  </div>
  <footer>
    &copy; 2023 HfT Stuttgart. Prepared By <a href="mailto:your.email@example.com">Meena Faizi</a>.
  </footer>
</body>
GitLab's avatar
GitLab committed
77
78
</html>

Faizi's avatar
Faizi committed
79