-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
executable file
·49 lines (47 loc) · 1.47 KB
/
portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>cedric's portfolio</title>
</head>
<body>
<header class="heading">
<h1 id="wavy">portfolio</h1>
<nav>
<ul class="nav-bar">
<li><a href="index.html">home</a></li>
<li><a href="portfolio.html">portfolio</a></li>
<li><a href="about.html">about</a></li>
</ul>
</nav>
</header>
<section class="media">
<div class="media-audio">
<img src="pss.jpg" alt="no image" />
<img src="daw.jpg" alt="no image" />
<img src="sanctuary.jpg" alt="no image" />
</div>
</section>
<section class="main-body">
<p>
I'm a live audio tech based out in Louisiana.I've worked 4 years so far,
but have loved music and tech for much longer and have gotten to see
more than i've ever thought.Next, i want to see what i can do with audio
in coding and see what emerging fields there are.
</p>
</section>
<footer id="footer">
<div class="footer-decor1">
<h3>Contacts</h3>
<ul class="contacts">
<li>Phone:#-###-####</li>
<li>email:example.@yahoo.com</li>
<li>Availability:10AM - 7PM</li>
</ul>
</div>
</footer>
</body>
</html>