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
31 lines (31 loc) · 978 Bytes
/
index.html
File metadata and controls
31 lines (31 loc) · 978 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
25
26
27
28
29
30
31
<!doctype html>
<head>
<title>Jaevon's Portfolio</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://wallpapersqq.net/wp-content/uploads/2015/12/Dwyane-Wade-4.jpg">
<h1>Jaevon</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>
<button></button>
</body>