-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
50 lines (50 loc) · 1.84 KB
/
profile.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
<!DOCTYPE html>
<html language="en">
<head>
<meta charset="utf-8" />
<title>Profile - DeAnna Nicholson</title>
</head>
<body>
<h1>Profile - DeAnna Nicholson</h1>
<section>
<img src="images\DeAnna.jpg" height="400" alt="Headshot of DeAnna" />
<nav>
<a href="#aboutMe">About Me</a> | <a href="#interests">Interests</a>
</nav>
<figure>
<figcaption>Listen to my personal theme song:</figcaption>
<audio controls autoplay src="mp3s\NOFX - Whatever Didi Wants.mp3">Your browser does not support HTML5 audio. Here is <a href="mp3s\NOFX - Whatever Didi Wants.mp3">a link to the audio</a> instead.
</audio>
</figure>
<h2 id="aboutMe">About Me</h2>
<ul>
<li>
I was born in Salem, Oregon.
</li>
<li>
I live in Keizer, Oregon.
</li>
<li>
Currently my job is being a student.
</li>
<li>
My ideal job is to become a Software Engineer and work remotely from home.
</li>
</ul>
</section>
<section>
<h2 id="interests">Interests</h2>
<ul>
<li>
I enjoy fixing things. For example I can fix cellphones and laptops. I really enjoy when it involves opening it up and soldering on the board or replacing components.
</li>
<li>
One of my most favorite hobbies is driving my Mini Cooper out on the country roads listening to my music loudly. It is a good way for me to release any built up aggressions or stress I may have.
</li>
</ul>
<div>
<img src="images\MiniCooper02.jpg" width="800" alt="Angled view of a black Mini Cooper Clubman Sport">
</div>
</section>
</body>
</html>