This repository was archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
70 lines (60 loc) · 2.97 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- No search engine robots please -->
<meta name="robots" content="noindex">
<link rel="icon" href="assets/images/icon/icon.png">
<!-- Common stylesheets -->
<link rel="stylesheet" href="assets/styles/common/header.css">
<link rel="stylesheet" href="assets/styles/common/common.css">
<link rel="stylesheet" href="assets/styles/common/article.css">
<link rel="stylesheet" href="assets/styles/common/footer.css">
<link rel="stylesheet" href="assets/styles/common/border.css">
<link rel="stylesheet" href="assets/styles/resume.css">
<title>About Me</title>
</head>
<body>
<main>
<header class="web-border-color" id="dropdown">
<div class="header-icon">
<a href="index.html">
<img src="assets/images/icon/icon.png">
</a>
</div>
<a href="javascript:void(0);" class="header-dropdown-icon" onclick="onClickHeader()">☰</a>
<div class="header-menu web-border-color">
<a class="link-button" href="index.html">Home</a>
<a class="link-button" href="about.html">About</a>
<a class="link-button" href="portfolio.html">Portfolio</a>
<a class="link-button" href="contact.html">Contact</a>
</div>
</header>
<article class="web-border-color">
<div class="title-bar align-center">
<h1>About Me</h1>
</div>
<div class="main-article">
<div class="about-me align-center">
<a href="https://unsplash.com/photos/7YVZYZeITc8">
<img src="assets/images/photos/about_me.jpg" style="max-height: 300px;">
</a>
</div>
<div class="about-me-caption align-center" style="padding: 12pt;">John Doe - Computer Science Student</div>
<p>I am a university student studying Computer Science at Foobar University</p>
<h2>My Resume</h2>
<h3>Education</h3>
<p>Foorbar University 2020-2024 - Computer Science - 3.9 GPA</p>
<h3>Experience/Jobs</h3>
<p>Sci-Fi Computer Tech - August 2022 - December 2022</p>
<p>Researched supreme techology for the military</p>
</div>
<div class="resume-bar align-center">
<a href=assets/documents/resume.pdf>Resume (PDF)</a>
</div>
</article>
<footer>Copyright 2021 Made with Squarespace?</footer>
</main>
<script src="assets/scripts/header.js"></script>
</body>
</html>