-
Notifications
You must be signed in to change notification settings - Fork 0
/
album.html
99 lines (83 loc) · 2.88 KB
/
album.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
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
<!doctype html>
<html>
<head>
<title>My Album</title>
<meta charset="UTF-8" >
<link rel="stylesheet" type="text/css" href="album.css">
<link href="https://fonts.googleapis.com/css?family=Droid+Serif|Open+Sans+Condensed:300|Raleway" rel="stylesheet">
</head>
<body>
<div id="header">
<div id="root">
<div id="logo">
<h1>AhGan's Collections</h1>
</div>
<div class="headerLink" id="fblink">
<a href="https://www.facebook.com/AhGanTsao"><img src="photos/facebook.png"></a>
</div>
<div class="headerLink" id="button1">
<a href="#"><p>About</p></a>
</div>
<div class="headerLink" id="button2">
<a href="#" style="cursor:initial"><p style="color:grey">Home</p></a>
</div>
</div>
</div>
<div id="album">
<div id="p1" class="photo" style="display:block">
<img src="photos/p1.jpg">
</div>
<div id="p2" class="photo">
<img src="photos/p2.jpg">
</div>
<div id="p3" class="photo">
<img src="photos/p3.jpg">
</div>
<div id="p4" class="photo">
<img src="photos/p4.jpg">
</div>
</div>
<div id="cycle-pager">
<span class="cycle-pager-active">•</span>
<span class="">•</span>
<span class="">•</span>
<span class="">•</span>
</div>
<div id="about">
<div id="container">
<div id="about-photo">
<img src="photos/about.jpg">
</div>
<div id="about-word">
<h2>About this album...</h2>
<p>After reading some HTML, CSS and Javascript reference books,<br>
I decided to try the beginner's mission - writing an album. <br>
While collecting something necessary on Internet,<br>
I saw this good example - <a href="http://www.pearlabyss.net/">Black Desert Official</a><br>
I tried to make a album website like this with my skill.<br>
There are still alot of problems I'm working on,<br>
but this is a really good experience for me. :D<br>
Thank you for visiting my work.<br>
If you want to give me some advice,<br>
feel free to message me through my facebook.<br>
I'm really appreciate you<br></p>
<p id='sign' style="text-align:right">AhGan Tsao</p>
</div>
</div>
<div id="escape-box">
</div>
</div>
<div id="footer">
<p> Album create by AhGan Tsao. All photos are collect from Internet.<br><em>I DO NOT OWN THESE PHOTOS</em></p>
</div>
<div id="debug">
<p id="photoWidth">..</p>
<p id="photoHeight">..</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js" type="text/javascript"></script>
<script src="javascript/autoshift.js" type="text/javascript"></script>
<script src="javascript/header-button.js" type="text/javascript"></script>
<script src="javascript/photo-resizer.js" type="text/javascript"></script>
<script src="javascript/jquery.easing.1.3.js" type="text/javascript"></script>
</body>
</html>