-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGreenAppleHome.html
69 lines (57 loc) · 2.96 KB
/
GreenAppleHome.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
61
62
63
64
65
66
67
68
69
<!doctype html> <center> <head> <title>GreenApple</title>
<meta charset="utf-8"> </head>
<style>
.Title{ margin-left: 500px; text-decoration: none; color:#86E57F; font-size:55px; font-family: "나눔바른고딕"; text-align: center; border-bottom:10px solid white; padding:20px; }
.Normal{color:black; text-decoration: none; font-size: 20px;}
.Watching{color:green; font-size: 20px;}
body{position: absolute; margin:0; background-color: #E4F7BA; }
ol{position:absolute;margin-left: 190px; height: 500px; border-right:5px solid green; width:200px; padding:0px; background-color: white; text-align: left; }
#GameMenu {margin-top: 20px; padding-top: 20px; border-top-style:dashed; color:green; width:200px; text-align: left;}
#article{ position: absolute; margin-left: 468px; padding-top : 10px; padding-left:30px; font-size:20px; text-align: center;}
.btn { display:block; width:200px; height:40px; line-height:40px; border:1px white solid; background-color: white; text-align:left; cursor: pointer; color: black; font-family: "나눔바른고딕"; font-size: 22px; transition:all 0.4s;}
.btn:hover{color:white;}
.hover1:hover{ box-shadow:200px 0 0 0 #ABF200 inset; }
.hover2:hover{ box-shadow:200px 0 0 0 #FFB9B9 inset; }
</style>
<!--사이트 방문 통계-->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-137537672-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-137537672-1');
</script>
<body>
<p><h1> <a href = "GreenAppleHome.html" class="Title">GreenApple Studio</a></h1></p>
<p>
<ol>
<button class="btn hover1" onclick="location.href = 'GreenAppleHome.html'"> 홈 </button>
<button class="btn hover1" onclick="location.href = 'Introduction.html'" > GreenApple 소개 </button>
<button class="btn hover1" onclick="location.href = 'Contact.html'" > Contact</button>
<button class="btn hover1" onclick="location.href = 'DevStory.html'" > 개발 노트 </button>
<div id="GameMenu">
<button class="btn hover2" onclick="location.href = 'Bottle1Escape.html'" > Bottle 1 Escape </button>
<button class="btn hover2" onclick="location.href = 'ColorPop.html'" > ColorPop </button>
<button class="btn hover2" onclick="location.href = 'TMT.html'"> TMT </button>
</div>
</ol>
<div id="article">
<img src="GreenAppleLogoImage.PNG" width="350">
</div>
</p>
<!--댓글 기능-->
<p style="margin-top: 800px;">
<div id="disqus_thread"></div>
<script>
(function() {
var d = document, s = d.createElement('script');
s.src = 'https://greenapple-1.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</p>
</body>
</center>
</html>