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
/
art.html
100 lines (94 loc) · 4.82 KB
/
art.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
<!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/common/gallery.css">
<title>My Artwork</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>Artwork</h1>
</div>
<div class="main-article">
<div class="gallery">
<div class="image-container">
<div class="gallery-image align-center">
<img src="assets/images/photos/square.png">
</div>
<div class="gallery-description align-center">
<p>This is a test. This is always a test.</p>
</div>
</div>
<div class="image-container">
<div class="gallery-image align-center">
<img src="assets/images/photos/square.png" alt="Test Image">
</div>
<div class="gallery-description align-center">
<p>This is a test. This is always a test. This is a test. This is always a test.</p>
</div>
</div>
<div class="image-container">
<div class="gallery-image align-center">
<img src="assets/images/photos/square.png" alt="Test Image">
</div>
<div class="gallery-description align-center">
<p>This is always a test. This is a test. This is always a test.</p>
</div>
</div>
<div class="image-container">
<div class="gallery-image align-center">
<img src="assets/images/photos/square.png" alt="Test Image">
</div>
<div class="gallery-description align-center">
<p>This is a test. This is always a test.</p>
</div>
</div>
<div class="image-container">
<div class="gallery-image align-center">
<img src="assets/images/photos/art.png" alt="Test Image">
</div>
<div class="gallery-description align-center">
<p>This is a test. This is always a test.</p>
</div>
</div>
<div class="image-container">
<div class="gallery-image align-center">
<img src="assets/images/photos/art_wallpaper.png" alt="Test Image">
</div>
<div class="gallery-description align-center">
<p>This is a test. This is always a test.</p>
</div>
</div>
</div>
</div>
</article>
<footer>Copyright 2021 Made with Squarespace?</footer>
</main>
<script src="assets/scripts/header.js"></script>
</body>
</html>