forked from itscodenation/flw1-portfolio-16-17-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 931 Bytes
/
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
<!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>ScriptEd's Portfolio</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="">My First Webpage</a></h2>
<p>This is the first project that I made in ScriptEd. I used basic HTML tags.</p>
<button>Like</button>
<p id="like"></p>
</div>
<div class="project">
<h2 class="project-title"> <a href="">Pun-a-thon</a></h2>
<p>I made a joke page. I used jQuery.</p>
<button>Like</button>
<p id="like"></p>
</div>
</body>