forked from itscodenation/flw1-portfolio-16-17-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 655 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<head>
<title>Portfolio Page</title>
<link href="style.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<h1>Ravens' Porfolio</h1>
<ul>
<li><a class="nav" href="">Home</a></li>
<li><a class="nav" href="">About</a></li>
<li><a class="nav" href="">Contact</a></li>
</ul>
</header>
<div class="project">
<h2 class="project-title"> <a href="">Project #1</a></h2>
<p>This project is something I made in October. It does...</p>
<button>Like</button>
<p id="like"></p>
</div>
</body>