-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.html
71 lines (48 loc) · 1.73 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
<!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">
<meta name="description" content="Stephen Skiles Portfolio Page">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/small.css">
<link rel="stylesheet" href="styles/large.css">
<link href="https://fonts.googleapis.com/css2?family=Aboreto&family=Raleway&display=swap" rel="stylesheet">
<title>Stephen Skiles Portfolio</title>
</head>
<body>
<header>
<nav>
<button class="hamButton">☰</button>
<div id="left">
<img src="images/SS.png" alt="Stephen Skiles Logo">
<h3>Stephen Skiles</h3>
</div>
<div id="right">
<a href="index.html">Home</a>
<a href="web.html">Projects</a>
<a href="about_me.html">About Me</a>
</div>
</nav>
</header>
<main id="projects-main">
<div id="slideshow">
<button id="backButton" type="button">Back</button>
<img src="#" class="images" id="image1">
<button id="nextButton" type="button">Next</button>
</div>
<div id="project-info">
<h2 id="title"></h2>
<p id="description"></p>
<a id='link' href="#">SS</a>
</div>
</main>
<footer>
<img src="images/SS.png" alt="Stephen Skiles Logo">
<h3>Stephen Skiles</h3>
</footer>
<script src="scripts/home.js"></script>
<script src="scripts/slideshow.js"></script>
</body>
</html>