index.html 2.06 KB
Newer Older
Athanasios's avatar
Athanasios committed
1
<html lang="en">
Volker Coors's avatar
Volker Coors committed
2

Athanasios's avatar
Athanasios committed
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
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>X3DOM Tutorials</title>
  <style>
    ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    .button {
      text-decoration: none;
      display: block;
      width: 500px;
      height: 25px;
      color: black;
      background: lightgray;
      padding: 10px;
      text-align: center;
      border-radius: 5px;
      line-height: 25px;
      margin-bottom: 10px;
      font-family: sans-serif;
    }

    .button:hover {
      background-color: #4CAF50;
      color: white;
    }

    .center {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  </style>
Volker Coors's avatar
Volker Coors committed
40
41
42
</head>

<body>
Athanasios's avatar
Athanasios committed
43
44
45
46
47
48
49
50
51
52
53
  <ul class="center">
    <li><a class="button" href="hellox3dom.html">hello X3DOM</a></li>
    <li><a class="button" href="coordinatesystem.html">coordinate system</a></li>
    <li><a class="button" href="transform.html">transform</a></li>
    <li><a class="button" href="colorbrewer.html">color brewer</a></li>
    <li><a class="button" href="colorbrewer2.html">color brewer 2</a></li>
    <li><a class="button" href="indexedfaceset.html">indexedfaceset</a></li>
    <li><a class="button" href="indexedfaceset2.html">indexedfaceset 2</a></li>
    <li><a class="button" href="ifsandmaterial.html">indexedfaceset and material</a></li>
    <li><a class="button" href="ifsandtexturecoord.html">indexedfaceset and texture coord</a></li>
    <li><a class="button" href="ifsandtextures.html">indexedfaceset and textures</a></li>
Athanasios's avatar
Athanasios committed
54
55
56
    <li><a class="button" href="treesdeciduous.html">trees deciduous</a></li>
    <li><a class="button" href="treesconifer.html">trees conifer</a></li>
    <li><a class="button" href="externalfile.html">external file</a></li>
Joe T.S.'s avatar
Joe T.S. committed
57
    <!-- <li><a class="button" href="terrain.html">terrain</a></li> -->
Athanasios's avatar
Athanasios committed
58
59
60
61
    <li><a class="button" href="barchart.html">barchart</a></li>
    <li><a class="button" href="toytown.html">toy town</a></li>
    <li><a class="button" href="addnode.html">add node</a></li>
  </ul>
Volker Coors's avatar
Volker Coors committed
62
</body>
Athanasios's avatar
Athanasios committed
63

Joe T.S.'s avatar
Joe T.S. committed
64
</html>