-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
executable file
·32 lines (28 loc) · 1007 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="portfolio.css">
</head>
<body>
<header>
<nav>
<h1>Angelabelle Abarientos</h1>
<ul>
<li> <a href="#">Home</a></li>
<li> <a href="#">Bio</a></li>
<li> <a href="#">Web</a></li>
<li> <a href="#">Studio</a></li>
<li> <a href="#">Graphic</a></li>
<li> <a href="#">Contact</a></li>
</ul>
</nav>
</header>
<div class="row">
<div class="col">col1</div>
<div class="col">col2</div>
<div class="col">col3</div>
</div>
<footer>2018 Abot9k</footer>
</body>
</html>