-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (75 loc) · 2.29 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!-- TODO 1: Create the HTML Boilerplate -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>patjcolon Portfolio</title>
<link rel="stylesheet" href="./public/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Teko&display=swap" rel="stylesheet">
</head>
<body>
<div id="header">
<h1>patjcolon's Portfolio</h1>
<h2>
I'm an aspiring Backend Developer
 
<a href="https://www.github.com/patjcolon">
Link to my GitHub!
</a>  
<a href="public/resume.html">
Link to my Resume!
</a>
</h2>
</div>
<hr />
<div id="memelink">
<h2>
Meme of the Week:
<a href="./public/affordablememe.html">
Affordability
</a>
</h2>
<h2>Newest Additions:
<a href="./TinDog-Project/index.html">
Tindog</a>
<span style="font-size: 1rem;">(Tinder for Dogs!)    </span>
<a href="./public/mondrian-comp.html">Mondrian Composition </a>    
<a href="https://patjcolon.github.io/DailyUI-100-Days/">DailyUI 100 Days</a>
</h2>
</div>
<a href="./public/top3_movies.html">
<div>
<h2>
My Top 3 Movies Project<br />
</h2>
<img src="./assets/images/movie-ranking.png"/>
</a>
<a href="./public/birthday_invite.html">
<h2>
My Birthday Party Invite Project<br />
</h2>
<img src="./assets/images/birthday-invite.png"/>
</a>
<a href="./public/spanish_colors.html">
<h2>
Learn Colors in Spanish
</h2>
</a>
</div>
<hr />
<div id="footer">
<a href="./public/about.html">About Me</a>
 
<a href="./public/contact.html">Contact Info</a>
</div>
</body>
</html>
<!-- TODO 4: Add titles/subtitles etc. -->
<!-- TODO 5: Add a link to the project pages -->
<!-- TODO 6: Add images to show the project previews
HINT for TODO 6: You can use the height attribute set to 200 to make the image smaller:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-height -->
<!-- TODO 7: Add the Contact Me and About Me page links -->