-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (88 loc) · 3.62 KB
/
index.html
File metadata and controls
103 lines (88 loc) · 3.62 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>에어브레인 - 드론 영상분석 서비스</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans:400,700" rel="stylesheet">
</head>
<body>
<nav>
<div class="content-area">
<div id="logo">
<a href="index.html"><div style="width:250px; height:50px; background-image: url(img/logo.png);">
</div></a>
</div>
<div>
</div>
<div>
<div id="hamburger" style="width:40px; height:32px; background-image: url(img/hamburger.png);" onclick="alert('페이지 아랫쪽 3가지 동그라미를 클릭하시면 다른 페이지를 보실 수 있습니다.')">
</div>
</div>
</nav>
<div class="copyright">
<div class="content-area">
<div style="height:20px; margin:0;">
</div>
<strong>Airbrain</strong> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/">Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License</a>.
</div>
</div>
<div class="main">
<div class="content-area">
<div id="page1">
<div style="height:50px;"></div>
<div class="page1-content">
<div></div>
<div class="mockup">
<div id="in">
<img class="mySlides" src="img/mockup1.png" style="width:100%">
<img class="mySlides" src="img/mockup2.png" style="width:100%">
<img class="mySlides" src="img/mockup3.png" style="width:100%">
</div>
<script>
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "block";
setTimeout(carousel, 2000); // Change image every 2 seconds
}
</script>
</div>
<div></div>
<div class="catch">
<div id="catchphrase">Do your best?<br />Be the best!</div>
<div id="catchphrase2">
<strong style="color:#fffcf8;">에어브레인</strong>은<br />당신에게 무엇이 필요한지 알고 있는 인공지능이<br />드론으로 촬영된 당신의 취미생활을 분석합니다.
</div>
<div>
<div id="button" onclick="alert('준비중입니다! 감사합니다.')"></div>
</div>
</div>
<div></div>
</div>
<div style="text-align:center; margin-top:40px;">
<a href="index.html"><svg height="20" width="40">
<circle cx="10" cy="10" r="7" stroke="none" stroke-width="3" fill="#422b09" onmouseover="circleColor()" />
</svg></a>
<a href="index1.html"><svg height="20" width="40">
<circle cx="10" cy="10" r="7" stroke="none" stroke-width="3" fill="#fffcf8" />
</svg></a></a>
<a href="index2.html"><svg height="20" width="40">
<circle cx="10" cy="10" r="7" stroke="none" stroke-width="3" fill="#fffcf8" />
</svg></a>
</div>
</div>
</div>
<div class="page2" id=>
</div>
</div>
</div>
</body>
</html>