This repository was archived by the owner on Apr 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathart.html
92 lines (83 loc) · 4.11 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
<!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/icons/website/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>Art</title>
</head>
<body>
<main>
<header class="web-border-color" id="dropdown">
<div class="header-icon">
<a href="index.html">
<img src="assets/images/icons/website/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 justify-center">
</div>
<div class="main-article gallery" style="padding:0;">
<div class="gallery">
<div class="gallery-item gallery-left">
<picture>
<source type="image/avif" srcset="assets/images/photos/art.avif">
<image src="assets/images/photos/art.png">
</picture>
<div class="gallery-description">
<p>A beautiful Minecraft terrain.
It's is pack.png whose seed was discovered in 2020 by the <a href ="https://packpng.com/">pack.png project</a>
with the help of <a href="https://minecraftathome.com/minecrafthome/">Minecraft@Home</a>.</p>
</div>
</div>
<div class="gallery-item gallery-right">
<picture>
<source type="image/avif" srcset="assets/images/photos/planet.avif">
<image src="assets/images/photos/planet.png">
</picture>
<div class="gallery-description">
<p>A planet in the solar system far far away.</p>
</div>
</div>
<div class="gallery-item gallery-left">
<picture>
<source type="image/avif" srcset="assets/images/photos/onsen.avif">
<image src="assets/images/photos/onsen.png">
</picture>
<div class="gallery-description">
<p>A Japanese hot springs. Good for a calm and natural way of bathing.</p>
</div>
</div>
<div class="gallery-item gallery-right">
<picture>
<source type="image/avif" srcset="assets/images/photos/room.avif">
<image src="assets/images/photos/room.png">
</picture>
<div class="gallery-description">
<p>An interior room</p>
</div>
</div>
</div>
</div>
</article>
<footer><p>Copyright 2021 <a href="https://www.squarespace.com"> Made with Squarespace?</a></p></footer>
</main>
<script src="assets/scripts/header.js"></script>
</body>
</html>