-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (97 loc) · 3 KB
/
index.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
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PolishchukArt | Home</title>
<link rel="icon" href="favicon.png" type="image/x-icon">
<link rel="stylesheet" href="stylesheet.css">
</head>
<body class="mobile_body">
<div class="wrapper">
<!-- Desktop Header -->
<header class="hide">
<nav>
<ul>
<li>
<a class="current" href="index.html">Home</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="cv.html">CV</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<div class="header_text">
<h1>
PolishchukArt
</h1>
</div>
<div>
<ul>
<li>
<a href="mailto:polishchukart@gmail.com"><img src="envelope.png" style="width: 16px;" alt="Email Me"></a>
</li>
<li>
<a href="https://www.instagram.com/ihorpolishchukart?igsh=ZnJuYTRwMTZwMmU="><img src="instagram.png" style="width: 16px;" alt="Instagram @ihorpolishchukart"></a>
</li>
<li>
<a href="https://www.pbase.com/igor_74"><img src="palette.png" style="width: 16px;" alt="https://www.pbase.com/igor_74"></a>
</li>
</ul>
</div>
</header>
<!-- Mobile Header -->
<header class="hide_desktop">
<h1>
PolishchukArt
</h1>
<nav>
<ul>
<li class="dropdown">
<img src="menu-burger.png">
<ul class="dropdown_menu">
<li>
<a class="current" href="index.html">Home</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="cv.html">CV</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</li>
</ul>
</nav>
</header>
<!-- MAIN -->
<main>
<div class="hero">
<div class="hero-img">
<img class="hide" src="portrait_1copy.webp" alt="Photograph of Ihor Polishchuk infront of a self-portrait.">
</div>
<div class="caption">
<h2 class="hide">Ihor Polishchuk</h2>
<p class="hide">Artist, Toronto</p>
<a class="button" href="gallery.html">View Gallery</a>
</div>
<div class="mobile_caption">
<p>Ihor Polishchuk <br><small>Artist</small> <br><small>Toronto</small></p>
</div>
</div>
</main>
</div>
<footer class="hide">
<p> Copyright © 2024 Ihor Polishchuk - All rights reserved.</p>
</footer>
</body>
</html>