Software ProjectsWebsite Templates

Cryptocurrency Exchange Website Template

Cryptocurrency Exchange Website Template: Creating a frontend design for a crypto exchange website involves HTML, CSS, and JavaScript to create a user-friendly interface. Below is a basic example of how you need to structure and design a simple cryptocurrency exchange frontend. This example will include a home page with a navigation bar, a market overview section, a trading interface, and a footer.

Project Structure

Create a project directory with the following structure:

crypto-exchange/
├── css/
│   └── styles.css
├── js/
│   └── scripts.js
├── index.html
└── assets/
    └── logo.png

HTML (index.html)

Create an Index.html file copy and paste the following code in it.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Crypto Exchange</title>
    <link rel="stylesheet" href="css/styles.css">
</head>
<body>
    <header>
        <nav>
            <div class="logo">
                <img src="assets/logo.png" alt="Crypto Exchange Logo">
            </div>
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#">Markets</a></li>
                <li><a href="#">Trade</a></li>
                <li><a href="#">Wallet</a></li>
                <li><a href="#">Login</a></li>
                <li><a href="#">Register</a></li>
            </ul>
        </nav>
    </header>

    <section class="market-overview">
        <h1>Market Overview</h1>
        <table>
            <thead>
                <tr>
                    <th>Coin</th>
                    <th>Price</th>
                    <th>Change</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>Bitcoin (BTC)</td>
                    <td>$50,000</td>
                    <td>+2.5%</td>
                </tr>
                <tr>
                    <td>Ethereum (ETH)</td>
                    <td>$4,000</td>
                    <td>-1.2%</td>
                </tr>
                <!-- Add more rows as needed -->
            </tbody>
        </table>
    </section>

    <section class="trading-interface">
        <h1>Trading Interface</h1>
        <div class="trade-box">
            <div class="order-form">
                <h2>Place Order</h2>
                <form>
                    <label for="trade-type">Type:</label>
                    <select id="trade-type">
                        <option value="buy">Buy</option>
                        <option value="sell">Sell</option>
                    </select>
                    <label for="trade-amount">Amount:</label>
                    <input type="number" id="trade-amount" placeholder="Amount">
                    <label for="trade-price">Price:</label>
                    <input type="number" id="trade-price" placeholder="Price">
                    <button type="submit">Submit Order</button>
                </form>
            </div>
            <div class="order-book">
                <h2>Order Book</h2>
                <table>
                    <thead>
                        <tr>
                            <th>Price</th>
                            <th>Amount</th>
                            <th>Total</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td>$50,000</td>
                            <td>0.5 BTC</td>
                            <td>$25,000</td>
                        </tr>
                        <!-- Add more rows as needed -->
                    </tbody>
                </table>
            </div>
        </div>
    </section>

    <footer>
        <p>© 2024 Crypto Exchange. All rights reserved.</p>
    </footer>

    <script src="js/scripts.js"></script>
</body>
</html>

Step 2: CSS (styles.css)

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 4px;
}

.market-overview, .trading-interface {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.market-overview h1, .trading-interface h1 {
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th, table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.trade-box {
    display: flex;
    justify-content: space-between;
}

.trade-box .order-form, .trade-box .order-book {
    width: 48%;
}

.order-form h2, .order-book h2 {
    text-align: center;
}

form label {
    display: block;
    margin-top: 1rem;
}

form input, form select, form button {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

form button {
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

form button:hover {
    background-color: #555;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

Step 3: JavaScript (scripts.js)

document.addEventListener("DOMContentLoaded", function() {
    // Add JavaScript functionality here if needed
    console.log("JavaScript Loaded");
});

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button
/