Skip to content

Commit 06f9229

Browse files
author
Muhtalip Dede
committed
add index.html
1 parent f446eb6 commit 06f9229

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

assets/css/style.css

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
font-family: 'Plus Jakarta Sans', sans-serif;
3+
}

assets/img/logo.png

80.3 KB
Loading

index.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<title>The Coderverse</title>
7+
<link rel="icon" href="assets/img/logo.png">
8+
<link rel="stylesheet" href="assets/css/style.css">
9+
<link rel="preconnect" href="https://fonts.googleapis.com">
10+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
11+
<link
12+
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap"
13+
rel="stylesheet">
14+
<script src="https://cdn.tailwindcss.com"></script>
15+
</head>
16+
<body class="w-full h-screen bg-gray-100">
17+
<div class="flex flex-col justify-center items-center h-screen">
18+
<img src="assets/img/logo.png" alt="logo" class="w-32 h-32 border-2 border-white rounded-full">
19+
<h1 class="text-4xl text-center font-bold text-black">The Coderverse</h1>
20+
</div>
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)