forked from itscodenation/flw1-portfolio-16-17-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.55 KB
/
index.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
<!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>
<img id="profile" src="images/scripted_logo_orange.png">
<h1>Richard's Portfolio</h1>
<ul>
<li><a class="nav" id = "home" href="index.html">Home</a></li>
<li><a class="nav" id = "about" href="pages/about.html">About</a></li>
<li><a class="nav" id = "contact" href="pages/contact.html">Contact</a></li>
</ul>
</header>
<div class="project">
<h2 class="project-title"> <a href="https://popcode.org/?gist=64d57ca40850dd83998a2ce7daec92ed">Proud Project</a></h2>
<p>This is a project that I am proud for. The project involved using JQuery, HTML, and CSS to create a functional button.</p>
<button>Like</button>
<p id="like"></p>
</div>
<div class="project">
<h2 class="project-title"> <a href="https://popcode.org/?gist=fd9afefd2aec140ac49abe3da949ee7d">Most Recent</a></h2>
<p>This is the most recent project that I have completed. The "FunHouse" project tested my knowledge of JQuery to fix and improve the webpage.</p>
<button>Like</button>
<p id="like"></p>
</div>
<div class="project">
<h2 class="project-title"> <a href="https://popcode.org/?gist=69b081091029ebff02d3008eb622f36b">My First Webpage</a></h2>
<p>This is the first project that I worked on in Code2College. I used basic HTML tags.</p>
<button>Like</button>
<p id="like"></p>
</div>
</body>