Skip to content

Commit 3d5752d

Browse files
first index file complete and also some important link added here
0 parents  commit 3d5752d

16 files changed

+51
-0
lines changed

Images/1.png

797 KB
Loading

Images/10.png

28.4 KB
Loading

Images/11.png

106 KB
Loading

Images/2.png

345 KB
Loading

Images/3.png

317 KB
Loading

Images/4.png

717 KB
Loading

Images/5.png

34.4 KB
Loading

Images/6.png

28.9 KB
Loading

Images/7.png

19.2 KB
Loading

Images/8.png

28.2 KB
Loading

Images/9.png

40.6 KB
Loading

Images/Group 1171275317.png

3.97 KB
Loading

Images/Group 1171275318.png

2.97 KB
Loading

Images/Group 1171275321.png

2.78 KB
Loading

index.html

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Hockey's Club</title>
7+
<!-- tailwind and daisy UI link here -->
8+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css" rel="stylesheet" type="text/css" />
9+
<script src="https://cdn.tailwindcss.com"></script>
10+
11+
<!-- Google font icon link here -->
12+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
13+
14+
<!-- Google font link here -->
15+
<link rel="preconnect" href="https://fonts.googleapis.com">
16+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
17+
<link href="https://fonts.googleapis.com/css2?family=Manrope:[email protected]&display=swap" rel="stylesheet">
18+
19+
20+
<!-- Font default style -->
21+
<style>
22+
.font-manrope{
23+
font-family: "Manrope", sans-serif;
24+
}
25+
</style>
26+
27+
<!-- Default styles link here -->
28+
<script>
29+
tailwind.config = {
30+
theme: {
31+
extend: {
32+
colors: {
33+
clifford: '#da373d',
34+
}
35+
}
36+
}
37+
}
38+
</script>
39+
</head>
40+
<body>
41+
<h1>hello</h1>
42+
</body>
43+
</html>

tailwind.config.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/** @type {import('tailwindcss').Config} */
2+
module.exports = {
3+
content: ["./src/**/*.{html,js}"],
4+
theme: {
5+
extend: {},
6+
},
7+
plugins: [],
8+
}

0 commit comments

Comments
 (0)