-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (29 loc) · 894 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>ARica Studio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Cabin" rel="stylesheet"></link>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div id="vantajs">
<div class="container">
<h2 class="heading">ARica Studio</h2>
<p class="description">Website Coming Soon</p>
</div>
</div>
<script src="./assets/vendor/three.r95.min.js"></script>
<script src="./assets/vanta/vanta.halo.min.js"></script>
<script>
VANTA.HALO({
el: "#vantajs",
mouseControls: true,
touchControls: true,
minHeight: 200.00,
minWidth: 200.00
})
</script>
</body>
</html>