-
Notifications
You must be signed in to change notification settings - Fork 0
/
canvas.html
90 lines (81 loc) · 2.53 KB
/
canvas.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html>
<head>
<title>Chadalon Music</title>
<!--gets device info ? -->
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0"/>
<!-- Font Awesome Icon Library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="Style/stylesheet.css">
<link rel="shortcut icon" href="Images/musiclogo.png"/>
</head>
<body>
<div class="header">
<a href="index.html">
<img id="logo" src="Images/musiclogo.png" alt="logo" />
</a>
<div id="topwords">
<h1 id="title">c h a d a l o n</h1>
</div>
</div>
<div class="right">
<ul class="rightems">
<li id="about">
<a href="about.html"><p>About</p>
</a>
</li>
<li id="sc">
<a href="https://www.soundcloud.com/chadalon"><p>Soundcloud</p></a>
</li>
<li id="spotify">
<a href="/"><p>Spotify</p>
</a>
</li>
<li id="youtube">
<a href="https://www.youtube.com/channel/UCabyZKH2aprs0Ae0n_8zBOg"><p>Youtube</p>
</a>
</li>
<li id="fb">
<a href="https://www.facebook.com/chadalonmusic/"><p>Facebook</p>
</a>
</li>
</ul>
</div>
<div id="leftbg">
<img id="imgme" src="Images/me.jpg" alt="profile pic" />
<img id="imgbreach" src="Images/Breach.jpg" alt="Breach cover" />
</div>
<div class="left">
<div id="topleft">
<p id="bio">
Chadalon is an electronica composer/producer based in Utah.
</p>
</div>
<canvas id="myCanvas" width="200" height="100" style="border:1px solid #000000;"></canvas>
<script>
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
ctx.fillStyle = "#FF0000";
ctx.fillRect(0, 0, 150, 75);
</script>
<div id="realfooter">
</div>
<div class="bottom">
<a href="https://www.facebook.com/chadalonmusic/" class="fa fa-facebook"></a>
<a href="https://www.twitter.com/chadalonmusic" class="fa fa-twitter"></a>
<a href="https://www.instagram.com/chadalon.music" class="fa fa-instagram"></a>
<a href="#" class="fa fa-spotify"></a>
<a href="https://www.soundcloud.com/chadalon" class="fa fa-soundcloud"></a>
<a href="https://www.youtube.com/channel/UCabyZKH2aprs0Ae0n_8zBOg" class="fa fa-youtube-play"></a>
<a href="https://chadalon.bandcamp.com/" class="fa fa-bandcamp"></a>
</div>
</div>
<!--
<div class="footer">
<!--
<p>chadalonmusic@gmail.com</p>
<a href="#" class="fa fa-facebook"></a>
</div>
-->
</body>
</html>