
Got any vid ideas?
email me
saminiscool5@gmail.com
My email: saminiscool5@gamil.com
Masuk's email: thecoolmasuk2001@gmail.com
The code for our website is open source
<!DOCTYPE html>
<html lang="your preferred language">
<head>
<title>your website name</title>
<link rel="stylesheet" href="css file name.css">
</head>
<body>
the things on your website goes here
</body>
</html>
:root {
--base-color: #000000;
--text-color: #ffffff;
--primary-color: your favorite color;
--secondary-color: opposite of your favorite color;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
color: var(--text-color);
}
body {
background-color: var(--base-color);
}