-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
36 lines (28 loc) · 957 Bytes
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<!-- ^ the viewport meta tag is to make your webpage responsive according to screen size -->
<title>Kevin Wang</title>
<!-- ^ your webpage's title -->
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- ^ where we link our CSS file to our webpage -->
</head>
<body>
<div>
<img src=" Calm before the storm.jpg"/>
<h1>Kevin Wang</h1>
<p> I love music, check out my Spotify Playlists Here :) </p>
<a target=" _blank" href="https://open.spotify.com/user/u3pyqn5ozjik3ob6vksr9m1l4" >Spotify Playlists </a>
</div>
<script src="script.js">
</script>
<!-- ^ where we link our JS file to our webpage (we don't need to worry about this for now!) -->
<div class="sidenav">
<a href="./index.html">Home</a>
<a href="./about.html"> About Me </a>
<a href="mailto:[email protected]">Contact</a>
</div>
</body>
</html>