index.html 1.6 KB
Newer Older
Alfakhori's avatar
Alfakhori committed
1
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
<!DOCTYPE html>
<html>
  <head>
    <title>Simple WebXR Demo</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
      /* Style for the buttons */
      button {
        background-color: blue;
        color: white;
        font-size: 24px;
        padding: 12px 24px;
        border: none;
        border-radius: 4px;
        margin: 20px;
        cursor: pointer;
      }
      
      /* Style for the logo */
      #logo {
        float: right;
        margin-right: 20px;
        margin-top: 20px;
        width: 100px;
        height: 100px;
      }
      
      /* Style for the footer */
      footer {
        text-align: center;
        margin-top: 50px;
      }
      
      /* Style for the email link */
      footer a {
        color: blue;
        text-decoration: none;
      }
    </style>
  </head>
  <body>
    <h1>Welcome to this simple WebXR demo!</h1>
    <p>Click on one of the buttons below to check the two demos:</p>
    <img src="https://www.hft-stuttgart.de/typo3conf/ext/hft_sitepackage/Resources/Public/img/HFT_logo.svg" alt="HfT Stuttgart" id="logo">
    <button onclick="location.href='1-Cube.html'">Cube demo</button>
47
    <button onclick="location.href='2-Hit.html'">Tap to Place Demo</button>
Alfakhori's avatar
Alfakhori committed
48
    <p> You can follow this <a href="https://transfer.hft-stuttgart.de/gitlab/coors/visualization/-/wikis/Create-a-simple-web-AR-application">tutorial</a> to create a similar WebXR app.</p>
Alfakhori's avatar
Alfakhori committed
49
    <footer>&copy; 2023 HfT Stuttgart. Contact <a href="mailto:muhammad.alfakhori@hft-stuttgart.de">Muhammad Alfakhori</a>.</footer>
Alfakhori's avatar
Alfakhori committed
50
51
  </body>
</html>