-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (109 loc) · 5.19 KB
/
index.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/style.css">
<title>Jeffrey's Portfolio</title>
</head>
<!-- Header -->
<header id = "header">
<div class = "inner">
<a href="#" class="image avatar"><img src="assets/images/linkedin image.png" alt="" /></a>
<h1><strong> Hi, my name is Jeffrey Banh</strong></h1>
</div>
</header>
<main>
<div id = "main">
<section id = "First">
<header class = "major">
<h2>About Me</h2>
<p>I am a Full-Stack Developer</p>
</header>
</section>
<section id = "Second">
<h2>Portfolio</h2>
<div class = "row">
<article class="col-6 col-12-xsmall work-item">
<a href="assets/images/DataSetImage.jpg" class="image fit thumb"><img src="assets/images/DataSetImage.jpg" alt="" /></a>
<h3>Self-service Tool Geographical and Population Data Set</h3>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="assets/images/Threading.jpg" class="image fit thumb"><img src="assets/images/Threading.jpg" alt="" /></a>
<h3>Threading Project</h3>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="assets/images/DataVisualization.jpg" class="image fit thumb"><img src="assets/images/DataVisualization.jpg" alt="" /></a>
<h3>Data Visualization Project</h3>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="assets/images/GameDesign2.jpg" class="image fit thumb"><img src="assets/images/GameDesign2.jpg" alt="" /></a>
<h3>MailBox Game</h3>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="assets/images/run-buddy.jpg" class="image fit thumb"><img src="assets/images/run-buddy.jpg" alt="" /></a>
<h3>Run-Buddy</h3>
</article >
<article class="col-6 col-12-xsmall work-item">
<a href="assets/images/Hotel_IMG.png" class="image fit thumb"><img src="assets/images/Hotel_IMG.png" alt="" /></a>
<h3>Travel Agent</h3>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="assets/images/UpdatedHomePage.png" class="image fit thumb"><img src="assets/images/UpdatedHomePage.png" alt="" /></a>
<h3>Allergy Finder</h3>
</article>
</div>
<ul class = "actions">
<li><a href="#" class= "button">Resume</a></li>
</ul>
</section>
<section id="three">
<h2>Contact</h2>
<div class="row">
<div class="col-8 col-12-small">
<form method="post" action="#">
<div class="row gtr-uniform gtr-50">
<div class="col-6 col-12-xsmall"><input type="text" name="name" id="name" placeholder="Name" /></div>
<div class="col-6 col-12-xsmall"><input type="email" name="email" id="email" placeholder="Email" /></div>
<div class="col-12"><textarea name="message" id="message" placeholder="Message" rows="4"></textarea></div>
</div>
</form>
<ul class="actions">
<li><input type="submit" value="Send Message" /></li>
</ul>
</div>
<div class="col-4 col-12-small">
<ul class="labeled-icons">
<li>
<h3 class="icon solid fa-home"><span class="label">Address</span></h3>
San Jose, CA 95148<br />
United States
</li>
<li>
<h3 class="icon solid fa-mobile-alt"><span class="label">Phone</span></h3>
408-906-9076
</li>
<li>
<h3 class="icon solid fa-envelope"><span class="label">Email</span></h3>
<a href="#">[email protected]</a>
</li>
</ul>
</div>
</div>
</section>
</div>
<footer id = "footer">
<div class = "inner">
<ul class = "icons">
<li><a href="#" class="icon brands fa-github"><span class="label">Github</span></a></li>
<li><a href="#" class="icon solid fa-envelope"><span class="label">Email</span></a></li>
</ul>
<ul class = "copyright">
<li>©<li>Design:Jeffrey Banh</li></li>
</ul>
</div>
</footer>
</main>
</body>
</html>