-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathart.html
57 lines (57 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<title>Max's Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header class="header lilac">
<h1><a href="index.html"> Max's Portfolio </a></h1>
<img class="logo" src="images/max-logo.svg" alt="max-logo"/>
<nav class="navbar">
<ul class="navbar-menu">
<li class="search">
<a class="fa-search href=#search">Search</a>
<form id="search" method="get" action="#">
<input type="text" name="query" placeholder="Search"/>
</form>
</li>
<li>
<a href="index.html">
home
</a>
</li>
<li>
<a href="about-me.html">
about
</a>
</li>
</ul>
</nav>
</header>
<main>
this is the art page
</main>
<footer class="footer plum white-text">
<div>
<img class="icon" src="images/email-icon.svg" alt="email-icon"/>
<a href="mailto:[email protected]"> [email protected] </a>
</div>
<div>
<img class="icon" src="images/twitch-icon.svg" alt="twitch-icon"/>
dynamax.png
</div>
<div>
<img class="icon" src="images/twitter-icon.svg" alt="twitter-icon"/>
dynamaxdotpng
</div>
<div>
<img class="icon" src="images/youtube-icon.svg" alt="youtube-icon"/>
dynamaxdotpng
</div>
</footer>
</body>