-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (78 loc) · 2.79 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
<!doctype html>
<html>
<head>
<title>Gabriel's Portfolio</title>
<!---Meta data-->
<meta charset="UTF-8">
<meta name="keywords" content="Product manager,digital,portfolio">
<meta name="description" content="Gabriel's digital product manager portfolio">
<meta name="author" content="Gabriel Lee">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!---end Meta data-->
<!---CSS sheet-->
<link rel="stylesheet" href="styles.css">
<!---Icon sheet-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<!---Navbar-->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
<!--end of Navigation bar-->
</head>
<body>
<div id="navbar-container"></div>
<main>
<div class="hero-section">
<div>
<h1>Gabriel an entrepreneurial product manager passionate about social good</h1>
</div>
<div>
<img src="" alt="">
</div>
</div>
<div>
<h2>Projects</h2>
<div class="flex-container">
<div class="card">
<img src="" alt="">
<div class="container">
<h4>Pack (Co-founder - 2022)</h4>
<p>A platform startup spurring SMEs to strategic alliances towards good work.
#platform
#startup</p>
<a href="pack.html">Read more -></a>
</div>
</div>
<div class="card">
<img src="" alt="">
<div class="container">
<h4>Care Square (Founder - 2022)</h4>
<p>A platform to alleviate caregiver burden by connecting caregivers to essential resources.
#platform
#social_impact</p>
<a href="caresquare.html">Read more -></a>
</div>
</div>
<div class="card">
<img src="" alt="">
<div class="container">
<h4>Feed 52 (Founder - 2019) </h4>
<p>Equipping persons with autism with culinary schools with the help of technology.
#social_impact</p>
<a href="Feed52.html">Read more -></a>
</div>
</div>
</div>
<h6>Wondering how I got immersed into these seemingly unrelated things?</h6>
<button>Click to Read</button>
<a href="loading.html"><button>click to load</button></a>
</div>
</main>
<footer>
<div class="social-links">
<a href="https://www.linkedin.com/in/gabriel-lee-hello/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/gab-lee" target="_blank"><i class="fab fa-github"></i></a>
<!-- Add more social links with appropriate icons -->
</div>
</footer>
</body>
</html>