最简单的英文网站

news2024/10/1 7:29:55

代码图:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>College Job Website</title>
    <link rel="stylesheet" href="https://cdn.staticfile.org/layui/2.5.6/css/layui.min.css">
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
            color: #333;
        }

        header {
            height: 70px;
            background-color: #fff;
            border-bottom: 1px solid #eee;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 30px;
            font-weight: bold;
            text-transform: uppercase;
            color: #333;
        }

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

        nav li {
            margin: 0 10px;
        }

        nav a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
        }

        .banner {
            height: 400px;
            overflow: hidden;
            position: relative;
        }

        .banner img {
            max-width: 100%;
            height: auto;
            position: absolute;
            top: 0;
            left: 0;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .overlay h1 {
            color: #fff;
            font-size: 36px;
            font-weight: bold;
            text-align: center;
            text-shadow: 1px 1px 1px #333;
        }

        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section {
            margin-bottom: 40px;
        }

        .section h2 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .card {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin: 20px;
            max-width: 300px;
        }

        .card img {
            max-width: 100%;
            height: auto;
        }

        .card .title {
            font-size: 20px;
            font-weight: bold;
            margin: 10px;
        }

        .card .description {
            margin: 10px;
            font-size: 14px;
            color: #666;
        }

        .card button {
            display: block;
            margin: 20px auto;
            background-color: #333;
            color: #fff;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .card button:hover {
            background-color: #555;
        }

        footer {
            background-color: #eee;
            border-top: 1px solid #ccc;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-media {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .social-media li {
            margin: 0 10px;
        }

        .social-media a {
            color: #333;
            text-decoration: none;
            font-size: 24px;
        }
    </style>
</head>
<body>
<header>
    <div class="logo">College Job Website</div>
    <nav>
        <ul>
            <li><a href="#">Home</a></li>
            <li><a href="#">Job Listings</a></li>
            <li><a href="#">Career Fair</a></li>
            <li><a href="#">Employer Presentations</a></li>
            <li><a href="#">Job Search Tips</a></li>
            <li><a href="#">Contact Us</a></li>
        </ul>
    </nav>
</header>

<div class="banner">
    <img src="https://via.placeholder.com/1920x400.png?text=Placeholder+Image" alt="Banner">

    <div class="overlay">
        <h1>Welcome to the College Job Website</h1>
    </div>
</div>

<div class="content">
    <div class="section">
        <h2>Job Listings</h2>

        <div class="cards">
            <div class="card">
                <img src="https://via.placeholder.com/300x200.png?text=Placeholder+Image" alt="Card Image">
                <div class="title">Sales Manager</div>
                <div class="description">We need an excellent Sales Manager to join our team.</div>
                <button>Apply</button>
            </div>

            <div class="card">
                <img src="https://via.placeholder.com/300x200.png?text=Placeholder+Image" alt="Card Image">
                <div class="title">Java Engineer</div>
                <div class="description">We are looking for a Java Engineer who loves programming to join our team.</div>
                <button>Apply</button>
            </div>

            <div class="card">
                <img src="https://via.placeholder.com/300x200.png?text=Placeholder+Image" alt="Card Image">
                <div class="title">Marketing Specialist</div>
                <div class="description">We need a Marketing Specialist to help us promote our products.</div>
                <button>Apply</button>
            </div>

            <div class="card">
                <img src="https://via.placeholder.com/300x200.png?text=Placeholder+Image" alt="Card Image">
                <div class="title">UI Designer</div>
                <div class="description">We are looking for a talented UI Designer to join our team.</div>
                <button>Apply</button>
            </div>
        </div>
    </div>

    <div class="section">
        <h2>Career Fair</h2>

        <p>We will be hosting a career fair at the college, and all students are welcome to attend.</p>

        <button>Learn More</button>
    </div>

    <div class="section">
        <h2>Employer Presentations</h2>

        <p>We will be inviting several well-known companies to come to the college and give presentations. We encourage all students to attend.</p>

        <button>View Details</button>
    </div>

    <div class="section">
        <h2>Job Search Tips</h2>

        <p>We will be sharing some useful tips and experiences about job searching to help students find their ideal jobs.</p>

        <button>View More</button>
    </div>
</div>

<footer>
    <div>All rights reserved &copy; College Job Website</div>
    <div class="social-media">
        <ul>
            <li><a href="#"><i class="layui-icon layui-icon-wechat"></i></a></li>
            <li><a href="#"><i class="layui-icon layui-icon-qq"></i></a></li>
            <li><a href="#"><i class="layui-icon layui-icon-weibo"></i></a></li>
        </ul>
    </div>
</footer>

<script src="https://cdn.staticfile.org/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/layui/2.5.6/layui.min.js"></script>
<script>
    layui.use(['carousel'], function () {
        var carousel = layui.carousel;

        carousel.render({
            elem: '.banner',
            width: '100%',
            height: '400px',
            arrow: 'none',
            interval: 5000
        });
    });
</script>
</body>
</html>

结果图:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1261347.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

java学习part17final

110-面向对象(高级)-关键字final的使用及真题_哔哩哔哩_bilibili 1.概念 tips&#xff1a;java里有const关键字&#xff0c;但是用于保留字&#xff0c;不会使用&#xff0c;目前没有意义。 final变量没有默认赋值&#xff0c;只能在以下三个地方赋值&#xff0c;且只能赋值一…

数据结构_D6(231126)

①二分折半查找 ②单排快排主调

20231128让RK3399的挖掘机开发板在Andorid12系统下永不休眠

20231128让RK3399的挖掘机开发板在Andorid12系统下永不休眠 2023/11/28 7:56 适用于SOC以及系统版本&#xff1a; RK3399&#xff1a;Android10/11/12 RK3568&#xff1a;Android11/12 RK3588&#xff1a;Android12 缘起&#xff0c;调试的时候&#xff0c;RK3399的挖掘机开发板…

vue3+ts 指令拖拽案例

<template><div class"box" v-move><div class"header"></div><div>内容</div></div> </template><script setup lang"ts"> import { ref, Directive, DirectiveBinding } from "vu…

PLC与组态王之间Modbus无线通讯的从站设置

本方案主要详述了在多台西门子300PLC与组态王之间Modbus无线通讯中如何设置从站。方案中所用到的无线通讯终端是DTD434MC——欧美系PLC专用无线通讯终端。 一、方案概述 无线Modbus网络组成如下&#xff1a; 二、测试背景 ● PC端组态软件版本&#xff1a;组态王6.55 ● 默…

京东秒杀之秒杀详情

1 编写前端页面&#xff08;商品详情&#xff09; <!DOCTYPE html> <head><title>商品详情</title><meta http-equiv"Content-Type" content"text/html; charsetUTF-8" /><script type"text/javascript" src&…

HTML页面开发

html简单页面开发&#xff0c;主要用来测试 1. 开发环境&#xff1a;VScode 1. 在某路径下先新建文件夹&#xff0c;打开VScode打开文件夹&#xff0c;新建文件&#xff0c;文件命名为index.html 2. 安装库 open in browser 库安装完成后&#xff0c;在编写文本位置右击->op…

RK3568 android11 实现双路I2C触摸 --gt9xx

一&#xff0c;GT911 触摸屏简介 它的接口类型为 I2C &#xff0c;供电电压和通讯电压均为 3.3V 。这款电容触摸屏内置了上拉电阻&#xff0c;这意味着我们的开发板上与该触摸屏的接口处不需要设置上拉电阻。关于线序&#xff0c;同样是 GT911 &#xff0c;不同批次的器件都有…

【JMeter】配置元件

1. 元件的分类 HTTP Request Default 作用&#xff1a; 可以配置成通用的信息&#xff0c;可复用 ​​​​​​​ JDBC Connection Configuration 作用&#xff1a;连接数据库 前提&#xff1a; 下载好对应数据类型的jar包 ​​​​​​​ HTTP Header Manager信息头管理…

Scanner常用知识点

在Java中&#xff0c;Scanner类是用于读取用户输入的工具类&#xff0c;可以从多种输入源读取数据&#xff0c;如标准输入流、文件或字符串。以下是一些Scanner类的常用知识点&#xff1a; Scanner的初始化&#xff1a;在使用Scanner类之前&#xff0c;需要先将其导入到你的Ja…

基于SSM的零食物语购物商城的设计与实现

基于SSM的零食物语购物商城的设计与实现 摘要&#xff1a;“日常网购”作为一种比传统购物更便捷的方式&#xff0c;越来越受到大众的欢迎和认可。因此&#xff0c;系统的设计和应用技术对零食购物商城网站的要求越来越高&#xff0c;于是本系统应运而生。基于SSM[1]的零食购物…

android开发:安卓13Wifi和热点查看与设置功能

近日对安卓热点功能做了一些技术验证&#xff0c;目的是想利用手机开热点给设备做初始化&#xff0c;用的是安卓13&#xff0c;简言之&#xff1a; 热点设置功能不可用&#xff0c;不可设置SSID和密码&#xff0c;不可程序控制开启关闭&#xff0c;网上的代码统统都过时了Loca…

Matplotlib线形图的创建_Python数据分析与可视化

线形图的创建 绘制线形图设置颜色和风格设置坐标轴上下限设置图形标签 绘制线形图 在所有图形中&#xff0c;最简单的应该就是线性方程y f (x) 的可视化了。来看看如何创建这个简单的线形图。要画Matplotlib图形时&#xff0c;都需要先创建一个图形fig 和一个坐标轴ax。创建图…

抖音小店百货类目还能不能玩?卷不卷?

抖音小店百货类目还能不能玩&#xff1f;日用百货这个类目可以说是抖店里面最热门的一个类目了&#xff0c;因为客单价低&#xff0c;好出单&#xff0c;而且操作技术门槛也低&#xff0c;所以很多新手进入者市场之后&#xff0c;第一个店铺就是百货类目的&#xff0c;那现阶段…

vue3+ts v-model 深度学习

<template><div><h1>我是App.vue组件</h1><div>isShpw:{{ isShow }}</div><div>text:{{ text }}</div><div><button click"isShow !isShow">开关</button></div><hr /><vModeVal…

WebUI自动化学习(Selenium+Python+Pytest框架)002

新建项目 New Project 新建一个python代码文件 file-new-python file 会自动创建一个.py后缀的代码文件 注意:命名规则,包含字母、数字、下划线&#xff0c;不能以数字开头&#xff0c;不能跟python关键字或包名重复。 ********************华丽分割线********************…

经典神经网络——AlexNet模型论文详解及代码复现

一、背景 AlexNet是在2012年由Alex Krizhevsky等人提出的&#xff0c;该网络在2012年的ImageNet大赛上夺得了冠军&#xff0c;并且错误率比第二名高了很多。Alexnet共有8层结构&#xff0c;前5层为卷积层&#xff0c;后三层为全连接层。 论文地址&#xff1a;ImageNet Classif…

SQL注入-HTTP头注入

目录 HTTP Header概述 HTTP Header注入 HTTP Header注入概述 HTTP Header注入实例 HTTP Header概述 HTTP工作原理 HTTP请求方法 HTTP报文类型 请求报文&#xff08;HTTP Request&#xff09;&#xff1a;由客户端发给服务器的消息&#xff0c;其组成包括请求行&#xff08;R…

pinpoint链路跟踪运用及日志logback配置

本文将讲述pinpoint的安装&#xff0c;使用及与java logback 日志的集成。 介绍 是什么 是一款 APM监控工具(Application Performance Management/应用性能管理)基于java编写用于 大规模分布式系统 的监控&#xff0c;是 分析 大规模分布式系统 的平台基于google Dapper开发&…

案例分析-FATfs文件系统移植单片机内存不够问题分析和解决

在通过cubeMX自带的FATfs 文件系统在STM32F103C8T6上进行移植&#xff0c;正式调用后&#xff0c;发现系统报错&#xff0c;出现内存空间不足问题。如下&#xff1a; 更改更大容量的单片机进行编译&#xff0c;通过了 说明刚开始分析空间不够是对的&#xff0c;是flash不够还是…