-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.html
72 lines (60 loc) · 1.86 KB
/
web.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Web Design</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/nav.css">
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<link href="https://fonts.googleapis.com/css?family=Josefin+Slab|Open+Sans|Raleway|Rosario" rel="stylesheet">
<noscript>
<style>
.visually-hidden {
clip: none;
height: auto;
display: block !important;
width: auto;
overflow: auto;
position: static;
}
</style>
</noscript>
</head>
<body>
<div class="header">
<div class="row-nav">
<header>
<nav>
<img src="images/burger.png" alt="hamburger menu" width="50" height="50" class="ham-menu">
<ul id="nav-list" class="visually-hidden">
<li><a href="index.html">Home</a> </li>
<!-- <li><a href="aboutme.html">About Me</a> </li> -->
<li><a href="projects.html">Projects</a> <!-- <li><a href="designs.html"></a>Designs</li> -->
</li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html"> Contact</a> </li>
</ul>
</nav>
</header>
</div>
</div>
<main>
<div class="webpage">
<figure>
<a href="http://martinacalluori.com/zodiac/" target="_blank">
<picture>
<source media="(max-width: 400px)" srcset="images/zodiac350.jpg">
<source media="(max-width: 700px)" srcset="images/zodiac400.jpg">
<source media="(max-width: 800px)" srcset="images/zodiac600.jpg">
<source media="(min-width: 1100px)" srcset="images/zodiac1000.jpg">
<img src="images/zodiac600.jpg" alt="Zodiac">
</picture>
</a>
<figcaption class="caption"> Zodiac Calculator </figcaption>
</figure>
</div>
</main>
<script src="js/scripts.js"></script>
</body>
</html>