-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (84 loc) · 2.68 KB
/
Copy pathindex.html
File metadata and controls
84 lines (84 loc) · 2.68 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>My Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css?family=Noto+Sans|Roboto+Mono&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<div>
<img class="profile-picture" src="images/profile-picture.jpg" />
<h1>Hello! My name is Jenny ✌️</h1>
<p>
I'm a 4th year business and computer science student at UBC.
</p>
</div>
<hr />
<h2 class="heading">About</h2>
<div class="about-grid">
<div class="about-section">
<p>
I am an aspiring software engineer who is also well-versed in UX/UI.
I would love the opportunity to work in the intersection of design,
development, and business to solve real-world problems.
</p>
</div>
<div class="about-section">
<p class="about-subheading">Some of my interests/hobbies include:</p>
<ul class="about-list">
<li>✒️ Calligraphy</li>
<li>🌄 Hiking</li>
<li>🐕 Dogspotting</li>
</ul>
</div>
</div>
<hr />
<h2 class="heading">Projects</h2>
<div class="projects-grid">
<img class="project-image" src="images/project-1.jpg" />
<img class="project-image" src="images/project-2.jpg" />
<img class="project-image" src="images/project-3.jpg" />
<img class="project-image" src="images/project-4.jpg" />
</div>
<hr />
<h2 class="heading">Contact</h2>
<div class="contact">
<div class="links">
<h4>Links</h4>
<ul class="links-list">
<li>
<a href="https://github.com/panjenny0">Github</a>
</li>
<li>
<a href="https://linkedin.com/in/pan-jenny">Linkedin</a>
</li>
<li>
<a href="mailto:panjenny0@gmail.com">Email</a>
</li>
</ul>
</div>
<div>
<form>
<label for="email">
<h4 class="form-heading">Email</h4>
<input type="email" id="email" placeholder="Enter your email" />
</label>
<label for="message">
<h4 class="form-heading">Messages</h4>
<textarea id="message">Your Message</textarea>
</label>
<div class="submit-button-wrapper">
<input type="submit" />
</div>
</form>
</div>
</div>
</div>
</body>
</html>