Skip to content

Latest commit

 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

<title>SMSM Website</title>
<style>
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: url("background.jpg") no-repeat center center fixed;
        background-size: cover;
        font-family: Arial, sans-serif;
    }

    .container {
        text-align: center;
    }

    h1 {
        font-size: clamp(2.5rem, 8vw, 5rem);
        color: gold;
        text-shadow: 3px 3px 6px black;
        margin-bottom: 30px;
    }

    .search-box {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 700px;
        width: 90%;
        margin: auto;
        background: rgba(255,255,255,0.95);
        border-radius: 50px;
        padding: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .search-box input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 18px;
        padding: 15px 20px;
        border-radius: 50px;
    }

    .search-box button {
        border: none;
        background: #4285F4;
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
    }

    .search-box button:hover {
        background: #3367d6;
    }
</style>

Welcome to SMSM Website

<form class="search-box" action="https://www.google.com/search" method="GET">
    <input
        type="text"
        name="q"
        placeholder="Search Google..."
        autocomplete="off"
    >
    <button type="submit">Search</button>
</form>

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors