-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (42 loc) · 1.16 KB
/
index.html
File metadata and controls
52 lines (42 loc) · 1.16 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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Main Portfolio Page</title>
</head>
<body>
<header>
<h1>Main Portfolio Page</h1>
<hr />
<nav>
<a href="index.html">Main</a>
<a href="About-Me.html">About-Me</a>
</nav>
<hr />
</header>
<article>
<h2>List of projects</h2>
<ul>
<li>1. Project One:
<br /><a href="https://github.com/alanportugal/semantic_tags/blob/master/index.html" target="_blank">Assignment Week 1 - Semantic Tags</a>
<br /><img src="images/Week01-pic.JPG">
</li>
<li>2. Project Two
<br /><a href="http://www.google.com" target="_blank">Google Project</a>
<br /><img src="images/google-pic.JPG">
</li>
<li>3. Project Three
<br /><a href="http://www.yahoo.com" target="_blank">Yahoo Project</a>
<br /><img src="images/yahoo-pic.JPG">
</li>
<li>4. Project Four
<br /><a href="http://www.bing.com" target="_blank">Bing Project</a>
<br /><img src="images/bing-pic.JPG">
</li>
</ul>
</article>
<hr />
<footer>Author: Alan Portugal</footer>
<hr />
</body>
</html>