-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (49 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<title>koikoikoikoikoikoikoikoikoi</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="header">
<img src="assets/HeHeartlandOaks9773GraphicsUnderconstruction.gif" class="construction-gif">
<h1>Welcome to My Cool Page!</h1>
<img src="assets/HeHeartlandOaks9773GraphicsUnderconstruction.gif" class="construction-gif">
</div>
<div class="content">
<div class="about-me">
<h2>~*~ About Me ~*~</h2>
<marquee>waowaowaoawaowao</marquee>
<p>Hiya, names koi (all lowercase :D).</p>
<p>I sometimes draw stuff and code stuff</p>
<p>I fw vocaloid, utauloid, kawai sprite, and more!</p>
<p>"What you see is what you get! Just a guy that loves adventure!" - Sonic T. Hedgehog</p>
<p>Das all folks!</p>
</div>
<div class="drawing-board">
<h2>Draw Something Cool!</h2>
<canvas id="drawingCanvas"></canvas>
<div class="controls">
<input type="color" id="colorPicker">
<input type="range" id="brushSize" min="1" max="20" value="5">
<button id="clearCanvas">Clear</button>
<button id="sendDrawing">Send to Me!</button>
</div>
</div>
<div class="guestbook">
<h2>Leave a swag message</h2>
<form id="messageForm">
<input type="text" id="visitorName" placeholder="Your name">
<textarea id="message" placeholder="Leave a message!"></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
<div class="footer">
<p>Visit Counter: <span id="visitCount">idfk this doesn't work lol</span></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>