-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 2.48 KB
/
index.html
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SANITY</title>
<meta name="viewport" content="width=device-width, initial-scale=0.7">
<link rel="icon" type="image/png" href="./assets/global/favcon-32X32.png">
<link rel="stylesheet" type="text/css" href="./css/base.css"/>
<link rel="stylesheet" type="text/css" href="./css/index.css"/>
<script src="./js/index.js"></script>
</head>
<body>
<div id="main">
<div id="home-navbar">
<div class="home-navbar-title-content">
<div class="home-navbar-title-line">
<span id="site-name">SANITY</span>
</div>
<div class="home-navbar-title-line">
Simply Generate and View L-Systems
</div>
</div>
</div>
<div id="home-content">
<div class="slideshow-bg">
<div id="captioned-gallery">
<figure class="slider">
<figure>
<img class="slideshow-image" src="assets/home/1.png" alt="">
<figcaption class="figcaption-style">Explore L-Systems.</figcaption>
</figure>
<figure>
<img class="slideshow-image" src="assets/home/2.png" alt="">
<figcaption class="figcaption-style">Export to SVG.</figcaption>
</figure>
<figure>
<img class="slideshow-image" src="assets/home/3.png" alt="">
<figcaption class="figcaption-style">Discover natural looking patterns.</figcaption>
</figure>
<figure>
<img class="slideshow-image" src="assets/home/4.png" alt="">
<figcaption class="figcaption-style">Easy color encoding.</figcaption>
</figure>
<figure>
<img class="slideshow-image" src="assets/home/1.png" alt="">
<figcaption class="figcaption-style">Explore L-Systems.</figcaption>
</figure>
</figure>
</div>
</div>
<div id="home-buttons">
<a href="create.html" target="_top"> Start Creating </a>
<a href="manual.html" target="_top"> Review Manual </a>
<a href="gallery.html" target="_top"> View Gallery </a>
<a href="about.html" target="_top"> About </a>
</div>
</div>
</div>
</body>
</html>