-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (23 loc) · 986 Bytes
/
index.html
File metadata and controls
29 lines (23 loc) · 986 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Squares</title>
<link href="https://fonts.googleapis.com/css?family=Squada+One" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="CSS/squareStyles.css">
<script src="JS/jquery-3.3.1.min.js"></script>
<script src="JS/RandomSquares.js"></script>
</head>
<body>
<canvas id="squareGrid">
</canvas>
<div id="siteContent">
<div class="headerText">Kathryn McBain</div>
<div class="socialBar">
<a class="socialImage" href="https://twitter.com/KathrynMcBain"><img class="socialImage" src="Images/twitter.png"/></a>
<img id="profilePicture" src="Images/kmPicture.JPG"/>
<a class="socialImage" href="https://github.com/kathrynmcbain"><img class="socialImage" src="Images/github.png"></a>
</div>
</div>
</body>
</html>