forked from OSSPhilippines/freefolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (83 loc) · 4.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="OSSPH Freefolio"/>
<meta property="og:description" content="100% FREE Professional Portfolio Templates"/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://i.postimg.cc/85rXg2LD/oss-ph-og.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image:alt" content="OSSPH Freefolio">
<meta name="twitter:title" content="OSSPH Freefolio" />
<meta name="twitter:description" content="100% FREE Professional Portfolio Templates" />
<title>Freefolio by OSSPH</title>
<link rel="shortcut icon" href="./clean/img/logo.svg" type="image/x-icon">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-violet-200 text-violet-800">
<header class="bg-violet-500">
<div class="container mx-auto px-5 py-8 flex flex-row flex-wrap gap-4 justify-between items-center">
<a href="https://ossph.org/" target="_blank"><img class="h-14" src="./images/osslogo-text-white.png" alt="OSSPH logo"></a>
<h1 class="text-violet-900 text-center text-3xl lg:text-5xl font-black">
Freefolio
</h1>
</div>
</header>
<main>
<div class="container mx-auto px-5 py-24 grid md:grid-cols-2 gap-12">
<a href="hacker" class="relative bottom-0 hover:bottom-2 transition-all" target="_blank" data-aos="fade-up">
<img src="./images/hacker.png" alt="Hacker folio" class="rounded-md shadow object-cover aspect-video">
<h2 class="text-3xl font-bold mt-2">Hacker</h2>
</a>
<a href="indify" class="relative bottom-0 hover:bottom-2 transition-all" target="_blank" data-aos="fade-up">
<img src="./images/indify.png" alt="Indify folio" class="rounded-md shadow object-cover w-full aspect-video">
<h2 class="text-3xl font-bold mt-2">Indify</h2>
</a>
<a href="plain" class="relative bottom-0 hover:bottom-2 transition-all" target="_blank" data-aos="fade-up">
<img src="./images/plain.png" alt="Plain folio" class="rounded-md shadow object-cover w-full aspect-video">
<h2 class="text-3xl font-bold mt-2">Plain</h2>
</a>
<a href="clean" class="relative bottom-0 hover:bottom-2 transition-all" target="_blank" data-aos="fade-up">
<img src="./images/clean.png" alt="Clean folio" class="rounded-md shadow object-cover w-full aspect-video">
<h2 class="text-3xl font-bold mt-2">Clean</h2>
</a>
<a href="beginner" class="relative bottom-0 hover:bottom-2 transition-all" target="_blank" data-aos="fade-up">
<img src="./images/beginner.png" alt="Beginner folio" class="rounded-md shadow object-cover w-full aspect-video">
<h2 class="text-3xl font-bold mt-2">Beginner</h2>
</a>
<a href="outlines" class="relative bottom-0 hover:bottom-2 transition-all" target="_blank" data-aos="fade-up">
<img src="./images/outlines.png" alt="Outlines folio" class="rounded-md shadow object-cover w-full aspect-video">
<h2 class="text-3xl font-bold mt-2">Outlines</h2>
</a>
<a href="simple" class="relative bottom-0 hover:bottom-2 transition-all" target="_blank" data-aos="fade-up">
<img src="./images/simple.PNG" alt="Simple folio" class="rounded-md shadow object-cover w-full aspect-video">
<h2 class="text-3xl font-bold mt-2">Simple</h2>
</a>
<a href="deepsea" class="relative bottom-0 hover:bottom-2 transition-all" target="_blank" data-aos="fade-up">
<img src="./images/deepsea.png" alt="Deepsea folio" class="rounded-md shadow object-cover w-full aspect-video">
<h2 class="text-3xl font-bold mt-2">Deep Sea</h2>
</a>
<a href="dark-hack" class="relative bottom-0 hover:bottom-2 transition-all" target="_blank" data-aos="fade-up">
<img src="./images/dark-hack.png" alt="Dark Hack folio" class="rounded-md shadow object-cover w-full aspect-video">
<h2 class="text-3xl font-bold mt-2">Dark Hack</h2>
</a>
</div>
</main>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true,
delay: 0
});
</script>
</body>
</html>