-
Notifications
You must be signed in to change notification settings - Fork 0
/
photo_animalsPark.html
77 lines (67 loc) · 2.84 KB
/
photo_animalsPark.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/myIcon.png" type="image/png">
<title>Yujing</title>
</head>
<body>
<nav>
<ul>
<li><a href="home.html" class="text_nav_l" aria-label="Go to Home Page">Home</a></li>
<li><a href="artworks.html" class="text_nav_r" aria-label="Explore Artworks">Artworks</a></li>
<li><a href="photos.html" class="active" aria-label="View Photos">Photos</a></li>
<li><a href="me.html" class="text_nav_r" aria-label="Learn about Me">About me</a></li>
<li><a href="feedback.html" class="text_nav_l" aria-label="Provide Feedback">Feedbacks</a></li>
<li><a href="site_map.html" class="text_nav_r" aria-label="View Site Map">Site Map</a></li>
<li><a href="sourcelog.html" class="text_nav_r" aria-label="Access Source Log">Source</a></li>
</ul>
</nav>
<!--content-->
<!--goback to prev page navigation-->
<div class="centercontainner">
<!--goback to prev page navigation-->
<div class="center_container_row">
<div class="sub_nav">
<a class="a_goBack" aria-label="go back to photo page" href="photos.html">back</a>
</div>
</div>
<!--text information-->
<div class="centercontainer">
<h2>Animals Park</h2>
</div>
<div class="centercontainer">
<div class="center_text">
<p> Photography by Yujing</p>
<p>Canberra is a haven for numerous small animals</p>
</div>
</div>
<!--pictures here aligned-->
<div class="centercontainer">
<div class="photoDisplay">
<img class="photoDisplay" src="./images/photo_animals01.png" alt="animals01" width="600">
</div>
<div class="photoDisplay">
<img class="photoDisplay" src="./images/photo_animals02.png" alt="animals02" width="600">
</div>
<div class="photoDisplay">
<img class="photoDisplay" src="./images/photo_animals03.png" alt="animals03" width="600">
</div>
<div class="photoDisplay">
<img class="photoDisplay" src="./images/photo_animals04.png" alt="animals04" width="600">
</div>
</div>
</div>
<!-- footer -->
<div class="div_foot">
<p>Contact me:</p>
<div class="icon_a_align">
<a class="a_icon" aria-label="Faceboook page" href="https://www.facebook.com/share/KJw4KskijzY6zEkQ/?mibextid=dGKdO6"><img
src="images/Facebook_Logo.png" alt="Facebook_Logo" width="46"></a>
</div>
<p>Email: yujing.zhang@anu.edu.au</p>
<p>All rights reserved @Yujingzhang</p>
</div>
</body>
</html>