-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 1.36 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 1.36 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>druds</title>
<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=Pixelify+Sans&family=Space+Mono&display=swap"
rel="stylesheet"
/>
<link
rel="shortcut icon"
href="resources/img/favicon.ico"
type="image/x-icon"
/>
<link rel="stylesheet" href="resources/css/styles.css" />
</head>
<body>
<header>
<nav class="header">
<h1 class="header-title"><a href="#">druds</a></h1>
<ul class="header-navigation">
<li><a href="portfolio.html">portfolio</a></li>
<li><a href="about.html">about</a></li>
</ul>
</nav>
<div class="banner">
<h1>Welcome!</h1>
<img src="resources/img/bossanova.gif" />
</div>
</header>
<main></main>
<footer class="footer">
<p>by druds</p>
<!-- <img src="resources/img/ilovecoffee.gif" /> -->
</footer>
</body>
</html>