-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (60 loc) · 2.61 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
<html>
<head>
<title>website.sketch</title>
<link rel="stylesheet" href="static/stylesheets/style.css" type="text/css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="static/scripts/object-watch.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
</head>
<body>
<div class="intro section">
<div class="content">
<div class="artboard">
<!-- START of artboard features -->
<p class="artboard-title">Artboard 1</p>
<div class="cursor"></div>
<div class="handlers">
<div></div> <!-- top left -->
<div></div> <!-- top middle -->
<div></div> <!-- top right -->
<div></div> <!-- middle left -->
<div></div> <!-- middle right -->
<div></div> <!-- bottom left -->
<div></div> <!-- bottom middle -->
<div></div> <!-- bottom right -->
</div>
<!--<p class="artboard-dimensions"><span class="artboard-dimensions-width">0</span> × <span class="artboard-dimensions-height">0</span></p>-->
<!-- END of artboard features -->
<!-- START of actual design -->
<div class="profile-picture" drawn="0" handlers="false">
<div class="handlers">
<div></div> <!-- top left -->
<div></div> <!-- top middle -->
<div></div> <!-- top right -->
<div></div> <!-- middle left -->
<div></div> <!-- middle right -->
<div></div> <!-- bottom left -->
<div></div> <!-- bottom middle -->
<div></div> <!-- bottom right -->
</div>
</div>
<textarea rows="2" class="name-at-top" text="Austin Valleskey" type-out="true" drawn="0"></textarea>
<div class="short-description-container">
<!-- had to do it this way in order to allow separate colors! -->
<textarea rows="1" highlight-color="#AE00FF" class="short-description-designer" text="Designer" type-out="true"></textarea>
<textarea rows="1" highlight-color="#1260FC" class="short-description-developer" text="Developer" type-out="true"></textarea>
<textarea rows="1" highlight-color="#00CDFF" class="short-description-speaker" text="Speaker" type-out="true"></textarea>
</div>
<textarea rows="1" class="scroll-down-for-more" text="Scroll down to learn more about me" type-out="true" drawn="0"></textarea>
<!-- END of actual design -->
</div>
</div>
</div>
<div class="about-me section">
<h1>About me</h1>
<p></p>
</div>
<script type="text/javascript" src="static/scripts/main.js"></script>
<script type="text/javascript" src="static/scripts/stages.js"></script>
</body>
</html>