This repository has been 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 pathportfolio.html
59 lines (52 loc) · 2.42 KB
/
portfolio.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
<!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/portfolio.css">
<title>Portfolio</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">
<!-- Intentionally not filled -->
<div class="title-bar align-center">
<h1>My Portfolio</h1>
</div>
<!-- Divide selection into one or two box per row depending on the width of the screen -->
<div class="portfolio-selection">
<div class="portfolio-art-selection align-center">
<p><a href="art.html">ART</a></p>
</div>
<div class="portfolio-code-selection align-center">
<p><a href="code.html">CODE</a></p>
</div>
</div>
</article>
<footer>Copyright 2021 Made with Squarespace?</footer>
</main>
<script src="assets/scripts/header.js"></script>
</body>
</html>