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
33 lines (30 loc) · 1.01 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.01 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
<!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="index.html">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">
<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="">Shall I show you an Image of a bunny?</a></h2>
<p>Lucky for you I ran out of bunnies! (sadface)---> :'(</p>
<button>Like</button>
<p id="like"></p>
</div>
</body>