-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (84 loc) · 3.3 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
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Webfolio</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" type="image/x-icon" href="Images/web.png">
</head>
<body>
<!-- Header -->
<div class="header" style="display:flex; justify-content:space-between; align-items:center; width:95%; margin-bottom:5px">
<table valign="middle" border="0" cellpadding="20">
<tbody>
<th>
<img src="Images/icon.png" height="100px" cellpadding="25">
<td>
Trey Ignatius Leong /
</td>
</th>
</tbody>
</table>
<div class="card1" style="width:auto;">
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js"
data-name="bmc-button" data-slug="treyleong" data-color="#31363F"
data-emoji="🤯" data-font="Poppins" data-text="Surprise Me!"
data-outline-color="#76ABAE" data-font-color="#EEEEEE"
data-coffee-color="#76ABAE">
</script>
</div>
</div>
<!-- Home Page -->
<div class="home">
<div class="top-cards" style="height:300px">
<div class="card1">
<div class="container">
<a href="aboutme.html" style="text-decoration:none">
<h4 class="card-style"><b class="card-style">About Me</b></h4>
<p class="card-style">
A page which tells you some
fun facts about myself.
</p>
</a>
</div>
</div>
<div class="card2">
<div class="container">
<a href="projects.html" style="text-decoration:none">
<h4 class="card-style"><b class="card-style">Projects</b></h4>
<p class="card-style">
A collection of every Coding Project
I have done in the past few years.
</p>
</a>
</div>
</div>
</div>
<div class="bottom-cards" style="height:300px">
<div class="card1">
<div class="container">
<a href="resume.html" style="text-decoration:none">
<h4 class="card-style"><b class="card-style">Resume</b></h4>
<p class="card-style">
A collection of my achievements,
and the companies I've worked at.
</p>
</a>
</div>
</div>
<div class="card2">
<div class="container">
<a href="contactme.html" style="text-decoration:none">
<h4 class="card-style"><b class="card-style">Contact Me</b></h4>
<p class="card-style">
A page for you to ask me anything about myself
or my projects!
</p>
</a>
</div>
</div>
</div>
</div>
</body>
</html>