-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (66 loc) · 2.23 KB
/
index.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>
<head>
<title>Antoine's ePortfolio</title>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="index.css"></link>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,200,300 400" rel="stylesheet">
</head>
<body>
<div id="divCurrentPage" class="page">
<div id="divTitle" class="title">
</div>
<div id="divMenu" class="menus">
<table>
<tr>
<td id="tdAbout">
<button>About Me</button>
</td>
<td id="tdProjects">
<button>Projects</button>
</td>
<td id="tdDLResume">
<a href="Antoine-Brassard-Lahey-CV 2018 EN" download="">
<button>Download Resume</button>
</a>
</td>
</tr>
</table>
</div>
<div id="divMainContent" class="mainContent">
<div class="topSection">
<div class="mainParagraph" onscroll="scroll()">
<h1 class="header">Antoine Brassard Lahey</h1>
<h2 class="tagLine">Software Developer.</h2>
</div>
</div>
<div class="bottomSection">
</div>
</div>
<div id="divThreeDots" class="threeDots">
<span id="scrollHint">(Scroll or drag up for next page)</span><br/>
<img class="size" src="threeDots.png" />
</div>
</div>
<div id="bgUnder" class="about-BG under">
</div>
<div id="menuUnder" class="menus menu-under under">
<table>
<tr>
<td id="tdAbout">
<button>About Me</button>
</td>
<td id="tdProjects">
<button>Projects</button>
</td>
<td id="tdDLResume">
<button>Download Resume</button>
</td>
</tr>
</table>
</div>
<div id="threeDotsUnder" class="threeDots under">
<img class="size" src="threeDots.png" />
</div>
</body>
</html>