-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.02 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lance Inman</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="less/styles.css" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,maximum-scale=1,user-scalable = no">
</head>
<canvas id="canvas" width="600" height="300"></canvas>
<body>
<div id="cardHolder">
<div id="cardHolderHeader"></div>
<div id="profilePicture">
<img src="img/profilePic.jpg">
</div>
<div id="profileName">
<p>Lance Inman</p>
</div>
<div id="profileInformationDiv">
<div class="profileInformation">
<p>Lorem Ipsum</p>
</div>
<div class="profileInformation">
<p>Lorem Ipsum</p>
</div>
<div class="profileInformation">
<p>Lorem Ipsum</p>
</div>
<div class="profileInformation">
<p>Lorem Ipsum</p>
</div>
</div>
</div>
<div id="background">
</div>
</body>
<script src="js/script.js"></script>
</html>