index.html 1.66 KB
Newer Older
Azizi's avatar
Azizi committed
1
2
3
<!DOCTYPE html>
<html>
  <head>
Azizi's avatar
Azizi committed
4
    <title>Simple WebXR Project</title>
Azizi's avatar
Azizi committed
5
6
7
8
9
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
      /* Style for the buttons */
      button {
Azizi's avatar
Azizi committed
10
11
        background-color: black;
        color: yellow;
Azizi's avatar
Azizi committed
12
13
        font-size: 20px;
        padding: 12px 20px;
Azizi's avatar
Azizi committed
14
15
        border: none;
        border-radius: 4px;
Azizi's avatar
Azizi committed
16
        margin: 81px;
Azizi's avatar
Azizi committed
17
18
19
20
21
        cursor: pointer;
      }
      
      /* Style for the logo */
      #logo {
Azizi's avatar
Azizi committed
22
        float: center;
Azizi's avatar
Azizi committed
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
        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>
Azizi's avatar
Azizi committed
43
    <h1>Welcome to simple WebXR Vitualliation Project!</h1>
Azizi's avatar
Azizi committed
44
    <p>Please Click on one of the below buttons to check the Project:</p>
Azizi's avatar
Azizi committed
45
    <img src="https://www.hft-stuttgart.de/typo3conf/ext/hft_sitepackage/Resources/Public/img/HFT_logo.svg" alt="HfT Stuttgart" id="logo">
Azizi's avatar
Azizi committed
46
47
48
49
    <button onclick="location.href='1-Cube.html'">Cube Project</button>
    <button onclick="location.href='2-Hit.html'">Tap to Place Project (MiniCar)</button>
    <p> You can follow this <a href="https://transfer.hft-stuttgart.de/gitlab/coors/visualization/-/wikis/Create-a-simple-web-AR-application">Click here for the tutorial</a> to create a similar WebXR on SmartPhones.</p>
    <footer>&copy; 2023 HfT Stuttgart. Contact <a href="mailto:muhammad.alfakhori@hft-stuttgart.de">Azizi & Sharif</a>.</footer>
Azizi's avatar
Azizi committed
50
51
  </body>
</html>