-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
71 lines (70 loc) · 1.95 KB
/
Copy pathgames.html
File metadata and controls
71 lines (70 loc) · 1.95 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
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>
<head>
<meta charset="utf-8" />
<title>Andrew Levy</title>
<link href="styles/style.css" rel="stylesheet" type="text/css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous"
/>
</head>
<body>
<div id="Heading">
<div id="head1">
<h1>Andrew Levy</h1>
</div>
</div>
<nav class="sticky">
<ul class="top-level sticky">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a class="active" href="games.html">Games</a></li>
</ul>
</nav>
<div class="Controller"></div>
<div id="AboutMe">
<div id="head2">
<h2>Games</h2>
</div>
<p id="About">
Here are some games!
</p>
<a href="minesweeper.html"
><button class="gameButton">Minesweeper</button></a
>
<a href="colorConverter.html"
><button class="gameButton">Color Converter</button></a
>
</div>
<footer id="footer">
<section class="contact">
<h2>Contact Me:</h2>
<ul class="socialMedia">
<li>
<a
href="https://www.linkedin.com/in/andrew-levy-661032180/"
target="_blank"
><i class="fab fa-linkedin"></i
></a>
</li>
<li>
<a href="https://github.com/AndrewLevy395" target="_blank"
><i class="fab fa-github-square"></i
></a>
</li>
<li>
<a href="mailto:amlevy@wpi.edu" target="_blank"
><i class="fas fa-envelope-square"></i
></a>
</li>
</ul>
<br />
</section>
</footer>
</body>
</html>