Samin & Masuk's Website

This website was made by Samin,
this uses HTML, CSS & JavaScript
if you don't believe me
look at the github repo

Samin with a TOY GUN

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

click here
Tips
Update Log
Use Visual Studio Code for coding

HyperText Markup Language
Cascading Style Sheet

Back
Name the HTML file index.html
Type the stuff below before coding your website

                    <!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>
                

Use <div class="text-container"> for text, links, buttons & etc. to stylize it in CSS
don't forget to use </div> after typing the text
Use <div class="flex-container"> for any form of image
Use the attribute "id" for things that run a JS script
DON'T USE IT ON THE DIV TAG

Back
Type this before styling your website

                    :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);
                    }
                

Use display: flex; for anything that are not images
DON'T USE FLEX FOR IMAGES
Use justify-content: center; for centering things on the x axis
align-items: center; for the y axis
Use . for things with the class attribute
# for things with the id attribute

Back
V2.1.0
Changed the domain to be a custom domain!!!!!!
Fixed the spelling of this in the JS button
Added a button to go to somewere its in here
.