-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (91 loc) · 3.87 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!doctype html>
<html>
<head>
<!-- Priority tags. These must come first. -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge; chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css">
<link rel="icon" href="assets/imgs/tab-logo.png" type="image/x-icon">
<!-- Document Title -->
<title>Willie M. Bonavente</title>
<!-- Primary Meta Tags -->
<meta name="title" content="Willie M. Bonavente" />
<meta name="author" content="Willie M. Bonavente" />
<!-- todo: add the images and the other assets -->
<!-- Add gif after deployment -->
<!-- Icons -->
<body>
<div class="header slide">
<a href="./test.html" class="logo">Willie M. Bonavente</a>
<a href="./about.html">About</a>
</div>
<div class="hero">
<h1 class="slide delay01">Your Future Software Developer</h1>
</div>
<div class="grid slide delay02">
<a href="assets/imgs/picasso-painting.png" class="work-item">
<div class="work-item-image">
<img src="assets/imgs/picasso-painting.png">
</div>
<div class="work-item-info">
<div class="work-item-company">Three Musicians, 1921</div>
<div class="work-item-description">Bootstrap CSS</div>
</div>
</a>
<a href="assets/imgs/rothko-painting.png" class="work-item">
<div class="work-item-image">
<img src="assets/imgs/rothko-painting.png">
</div>
<div class="work-item-info">
<div class="work-item-company">Rothko Painting</div>
<div class="work-item-description">Understanding of Color</div>
</div>
</a>
<a href="assets/imgs/owly-night.png" class="work-item">
<div class="work-item-image">
<img src="assets/imgs/owly-night.png">
</div>
<div class="work-item-info">
<div class="work-item-company">Dark theme City</div>
<div class="work-item-description">Dark Mode Activated</div>
</div>
</a>
<a href="assets/imgs/task-write.png" class="work-item">
<div class="work-item-image">
<img src="assets/imgs/task-write.png">
</div>
<div class="work-item-info">
<div class="work-item-company">Task Write</div>
<div class="work-item-description">Final Project in Information Management</div>
</div>
</a>
<a href="assets/imgs/inituion.png" class="work-item">
<div class="work-item-image">
<img src="assets/imgs/inituion.png">
</div>
<div class="work-item-info">
<div class="work-item-company">Archive</div>
<div class="work-item-description">Past design adventures</div>
</div>
</a>
</div>
<div class="about-me slide delay03">
<div class="description">
<p>I'm Willie M. Bonavente, a programmer based in the Philippines, currently 3rd-Year Student, Bachelor of
Science in Information Technology at PUP Sta.Mesa Manila, Philippines.
</p>
<a href="about.html">More about me</a>
</div>
<div class="contact">
<p>Get in touch <span>(Click to copy)</span></p>
<div class="email" id="copyemail" data-clipboard-text="williembonavente@iskolarngbayan.pup.edu.ph">
williembonavente@iskolarngbayan.pup.edu.ph</div>
</div>
</div>
<footer class="slide delay03">© Willie M. Bonavente 2024</footer>
<!-- Copy to clipboard -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.8/clipboard.min.js"></script>
<script src="index.js"></script>
</body>
</html>