-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (45 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<!-- this is a comment -->
<!-- it gets ignored by the browser -->
<!-- say whatever you want in comments! :D -->
<!-- be helpful to other people reading your code -->
<!--remember to link your stylesheet-->
<!--ours is called "style.css"-->
<link rel="stylesheet" href="style.css" type="text/css" />
<!--link for the favicon - the little icon next to the title-->
<!--the type should match the image type-->
<link rel="icon" type="image/png" href="https://38.media.tumblr.com/avatar_5ed82fae34e4_128.png" />
<title>Neko Atsume Fan Site!</title>
</head>
<body>
<!--begin header-->
<div class="header-container">
<h2>Neko Atsume</h2>
<h4>Kitty Collector</h4>
</div>
<!--end header-->
<!--begin main container-->
<div class="main-container">
<div class="reddit-container">
<h4>posts from <a href="https://www.reddit.com/r/nekoatsume/" target="_blank">/r/nekoatsume</a></h4>
<div class="reddit-posts"></div>
</div>
<div class="photo-container">
<h4>photos</h4>
<div class="photos"></div>
</div>
</div>
<!--end main container-->
<!--begin footer-->
<div class="footer-container">
<div class="click-button">Click Me!</div>
</div>
<!--end footer-->
<!--we have to link jQuery *first* so that app.js can use it-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.2.1.js"></script>
<!-- link our javascript application code -->
<script type="text/javascript" src="app.js"></script>
</body>
</html>