-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
138 lines (133 loc) Β· 6.63 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Daft Creations</title>
<link href="main.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
</head>
<body>
<div class="video-bg">
<video width="320" height="240" autoplay loop muted>
<source src="https://assets.codepen.io/3364143/7btrrd.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="dark-light">
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z" />
</svg>
</div>
<div class="app">
<div class="header">
<div class="logo">
<img src="daft-logo.png"/>
</div>
<span class="header-text">Daft Creations</span>
</div>
<div class="wrapper">
<div class="main-container">
<div class="content-wrapper">
<div class="content-wrapper-header">
<div class="content-wrapper-context">
<div class="content-text">
<span class="wave">π</span>
Hey there! Daft Creations, An organisation dedicated to contributing to open source with a talented group of people. A place where anyone can contribute. We're interested creating of tools and technology for problems that persist at subconscious level.
</div>
<div class="content-status">
<div class="states">
YouTube
<span>24K</span>
</div>
<div class="states">
Discord
<span>6</span>
</div>
<div class="states">
Twitter
<span>3</span>
</div>
</div>
</div>
</div>
<div class="content-section">
<div class="content-section-title">Find us on</div>
<div class="apps-card">
<div class="app-card">
<a href="https://github.com/daftcreations/">
<span>
<i class="fa-brands fa-github"></i>
Github
</span>
<div class="app-card__subtext">ποΈ House of our open-source projects</div>
</a>
</div>
<div class="app-card">
<a href="https://www.youtube.com/c/DaftCreation//">
<span>
<i class="fa-brands fa-youtube"></i>
YouTube
</span>
<div class="app-card__subtext">Our π¬ official channel</div>
</a>
</div>
<div class="app-card">
<a href="https://www.youtube.com/c/DaftCreation/">
<span>
<i class="fa-brands fa-instagram"></i>
Instagram
</span>
<div class="app-card__subtext">Hub of our π₯ short content</div>
</a>
</div>
</div>
</div>
<div class="content-section">
<div class="apps-card">
<div class="app-card">
<a href="https://twitter.com/daftcreations/">
<span>
<i class="fa-brands fa-twitter"></i>
Twitter
</span>
<div class="app-card__subtext">Don't forgot to follow us π</div>
</a>
</div>
<div class="app-card">
<a href="discord.gg/NKkBJVBd">
<span>
<i class="fa-brands fa-discord"></i>
Discord
</span>
<div class="app-card__subtext">Chat with us π¬, Don't hesitate!</div>
</a>
</div>
<div class="app-card">
<span>
<i class="fa-solid fa-globe"></i>
Website
</span>
<!-- <div class="app-card__subtext">Look at our π work!</div> -->
<div class="app-card__subtext">π Comming soon..</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="overlay-app"></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script type="text/javascript">
const toggleButton = document.querySelector('.dark-light');
toggleButton.addEventListener('click', () => {
document.body.classList.toggle('light-mode');
});
</script>
</body>
</html>