-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (114 loc) · 5.26 KB
/
index.html
File metadata and controls
123 lines (114 loc) · 5.26 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300&display=swap" rel="stylesheet">
<title> Dusing's simple portfolio</title>
<link rel="shortcut icon" type="image/jpg" href="/images/favion.jpg">
<style>
html{
scroll-behavior: smooth;
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="content">
<img class="introImg" src="./images/intro.png" loading="lazy">
<h3>Dusing Chang</h3>
<h5>A developer with a designer's insight</h5>
<ul>
<li>
<p><a target="_blank" href="https://github.com/readwalkerchang">GitHub</a></p>
</li>
<li>
<p><a target="_blank" href="https://github.com/readwalkerchang">Blog</a></p>
</li>
<li>
<p><a target="_blank" href="https://github.com/readwalkerchang/simpleportfolio">the codes of this site</a></p>
</li>
</ul>
</div>
</header>
<main>
<div class="team-area">
<div class="single-team">
<img src="images/01-lookbnb.jpg" alt="">
<article class="team-text">
<h2>Look Bnb</h2>
<li>- Custom design with WordPress theme</li>
<li>
<a href="https://www.lookbnb.tw/">Link</a>
</li>
</article>
</div>
<div class="single-team">
<img src="images/02-historica.jpg" alt="">
<article class="team-text">
<h2>Shokki exhibition</h2>
<li>- Custom design with WordPress theme</li>
<li>
<a href="http://exhib.drnh.gov.tw/en/shokki-2/introduction/index.html">Link</a>
</li>
</article>
</div>
<div class="single-team">
<img src="./images/03-reyoung.png" alt="">
<article class="team-text">
<h2>Reyoung</h2>
<li>- Custom design with WordPress theme</li>
<li>- Integrated with WooCommerce</li>
<li>
<a href="https://reyoung.co/">Link</a>
</li>
</article>
</div>
<div class="single-team">
<img src="images/04-miru1850.jpg" alt="">
<article class="team-text">
<h2>Miru1850</h2>
<li>- Self deployed on DigitalOcean</li>
<li>- Custom design with Oxygen</li>
<li>- Integrated with HotelBook plugin</li>
<li>
<a href="https://miru1850.com/">Link</a>
</li>
</article>
</div>
<div class="single-team">
<img src="images/05-DC.png">
<article class="team-text">
<h2>Dialogue China(USA)</h2>
<li>- Self deployed on AWS</li>
<li>- Custom design with WP theme</li>
<li>- Integrated with Paid Memberships Pro</li>
<li>
<a href="https://www.dialoguechina.com">Link</a>
</li>
</article>
</div>
<div class="single-team">
<img src="images/06-incu.png" alt="">
<article class="team-text">
<h2>Incu Digital</h2>
<ul>
<li> Self deployed on DigitalOcean</li>
<li> Design with Adobe Xd</li>
<li> Custom design with Oxygen</li>
<li>
<a href="https://incubedigital.tk/">Link</a>
</li>
</ul>
</article>
</div>
</div>
</main>
</div>
</body>
</html>