-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
91 lines (84 loc) · 3.07 KB
/
project.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<title>Previous projects</title>
</head>
<body>
<div class="header">
<a class="head" href="index.html">
<h2 class="logo">
<i class="fas fa-code"></i> Frankie Zheng
<i class="fas fa-code"></i></h2>
</a>
<input type="checkbox" id="chk">
<label for="chk" class="show-menu-btn">
<i class="fas fa-chevron-circle-down"></i>
</label>
<ul class="menu">
<a href="index.html">Home</a>
<a href="cv.html">CV</a>
<a href="project.html">Project</a>
<a href="#">About</a>
<label for="chk" class="hide-menu-btn">
<i class="far fa-times-circle"></i>
</label>
</ul>
</div>
<div class="project-section">
<div class="inner-width">
<div class="project-container">
<!-- Web Assignment 1 -->
<div class="project-box">
<div class="project-title">
Status Posting System
</div>
<div class="border"></div>
<div class="project-desc">
<p>Web Development Assignment 1 which required to build both front-end and back-end
for a system simillar as Library system that allows posting a status with its unique code,
share status, date and permission type, a search function allows user to search any status that
match to certain status return in well-formed table.</p>
</div>
<div class="project-button">
<a href="./PostSys">Read More</a>
</div>
</div>
<!-- Web Assignment 2 -->
<div class="project-box">
<div class="project-title">
Online Taxi System
</div>
<div class="border"></div>
<div class="project-desc">
<p>Web Development Assignment 2 which required to build both front-end and back-end
for a taxi system that allows user to make a booking for a certain time alone with its
pick-up address, time, date, customer name and its destination, another function allows
an admin to check upcoming booking within 2 hours and assign those booking to taxi driver.</p>
</div>
<div class="project-button">
<a href="./CabSys">Read More</a>
</div>
</div>
<!-- project recur -->
<div class="project-box">
<div class="project-title">
Recur Transport Management System
</div>
<div class="border"></div>
<div class="project-desc">
<p>Recur Transport is a local logistic company that deliever empty container from
port to port, yard to yard with 3 different location alone with New Zealand, which is
Auckland, Hamition, Tauranga.</p>
</div>
<div class="project-button">
<a href="#">Read More</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>