-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhobby.html
81 lines (78 loc) · 2.35 KB
/
hobby.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Hobby</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<header>
<nav>
<ul>
<li>
</li>
<li>
<a href="index.html">Weather</a>
</li>
<li>
<a href="about.html">About Author</a>
</li>
<li>
<a href="project.html">Other Projects</a>
</li>
<li>
<a href="hobby.html">Hobbies</a>
</li>
<li>
<a href="contact.html">Contact Author</a>
</li>
</ul>
</nav>
</header>
<div class="hobby">
<table class="hobby">
<tbody>
<tr>
<td><img class="hobby" id="hiking" src="image/IMG_3286.JPG" alt="hike"></td>
<td>
<h1>HIKING</h1>
<hr>
<p class="hobby">I like hiking, and I go hiking a lot during weekends. </p>
</td>
</tr>
<tr>
<td>
<h1>YOGA</h1>
<hr>
<p class="hobby">I am a yogi, and I pratice yoga almost everyday. </p>
</td>
<td><img class="hobby" id="yoga" src="image/IMG_8654.JPG" alt="yoga" ></td>
</tr>
<tr>
<td><img class="hobby" id="beach" src="image/IMG_3413.JPG" alt="bench" ></td>
<td>
<h1>BEACH</h1>
<hr>
<p class="hobby">I live beside beach, and I love going to beach and enjoy the sunshine. </p>
</td>
</tr>
</tbody>
</table>
</div>
<footer>
<p id="footerP">This is a project for BU CS601</p>
<ul>
<li>
<p>version: 12062020</p>
</li>
<li>
<p>Author: Lian Liu</p>
</li>
<li>
<a href="mailto:liulian@bu.edu">Email: liulian@bu.edu</a>
</li>
</ul>
</footer>
</body>
</html>