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
42 lines (41 loc) · 1.67 KB
/
index.html
File metadata and controls
42 lines (41 loc) · 1.67 KB
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
<!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="http://cf.ltkcdn.net/feng-shui/images/std/202931-576x450-yinyang.jpg">
<h1>Abi's Portfolio</h1>
<ul>
<li><a class="nav" href="">Home</a></li>
<li><a class="nav" href="pages/about.html">About</a></li>
<li><a class="nav" href="pages/contact.html">Contact</a></li>
</ul>
</header>
<div class="project">
<p>These are some projects I've made this year!</p>
<h2 class="project-title"> <a href="https://popcode.org/?gist=1c84b4a2680eebcd549f6bf20f740e9e">CSS Fun</a></h2>
<p>This is a project where I learned how to use CSS more effectively and creatively.</p>
<button>Like</button>
<p id="like"></p>
</div>
<div class="project">
<h2 class="project-title"> <a href="https://popcode.org/?gist=0bc44b5dbddfb93adfcffa13c7eedb94">Pun-a-thon</a></h2>
<p>I made a page of bad puns using J-Query.</p>
<button>Like</button>
<p id="like"></p>
</div>
<div class="project">
<h2 class="project-title"> <a href="https://popcode.org/?gist=1c84b4a2680eebcd549f6bf20f740e9e">CSS and HTML</a></h2>
<p>I changed a basic sites html and css to make it more visually appealing.</p>
<button>Like</button>
<p id="like"></p>
</div>
<div class="project">
<h2 class="project-title"> <a href="https://popcode.org/?gist=8f72df7c00de4930f7749bc0e78b1c4b">My Brand</a></h2>
<p>This is a page where I used CSS and HTML to create a branded page about myself.</p>
</div>
</body>