Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.8 kB
2
Indexable
Of course! Here's a simplified version of a landing page for a college website using HTML:

```html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>College Landing Page</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        .header {
            background-color: #0074D9;
            color: #FFF;
            text-align: center;
            padding: 2rem 0;
        }
        .content {
            max-width: 800px;
            margin: auto;
            padding: 2rem;
            background-color: #FFF;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            text-align: center;
        }
        .button {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: #0074D9;
            color: #FFF;
            text-decoration: none;
            border-radius: 5px;
        }
    </style>
</head>
<body>
    <div class="header">
        <h1>Welcome to XYZ College</h1>
        <p>Your Path to Success</p>
    </div>
    <div class="content">
        <h2>About Us</h2>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum cursus turpis vitae nunc convallis lacinia.</p>
        <a href="#" class="button">Learn More</a>
    </div>
</body>
</html>
```

This simplified landing page includes a header and a content section with a "Learn More" button. You can further customize and expand upon this template to create a complete landing page for your college website. Remember to adjust the content, styles, and layout according to your needs and design preferences.