美食网站基本结构

代码:

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>美食网站首页</title>
    <link rel="stylesheet" href="https://cdn.staticfile.org/layui/2.5.6/css/layui.min.css">
    <style>
        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Arial, sans-serif";
        }

        /* 导航栏样式 */
        .nav {
            display: flex;
            align-items: center;
            height: 80px;
            padding: 0 80px;
            background-color: #fff;
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .12), 0 0 6px 0 rgba(0, 0, 0, .1);
            position: relative;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
            margin-right: 50px;
        }

        nav {
            display: flex;
            flex: 1;
            align-items: center;
        }

        nav ul {
            display: flex;
        }

        nav li {
            margin-right: 50px;
        }

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

        nav a:hover {
            color: #ff8c00;
        }

        .layui-btn {
            margin-left: 50px;
        }

        /* banner样式 */
        .banner {
            height: 400px;
            background-image: url("https://picsum.photos/id/100/1200/400");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .banner h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .banner p {
            font-size: 24px;
            margin-bottom: 50px;
        }

        /* 菜单样式 */
        .food-menu {
            padding: 80px 80px 50px 80px;
        }

        .food-menu h2 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .food-menu p {
            font-size: 16px;
            color: #999;
            margin-bottom: 50px;
        }

        .menu-item {
            background-color: #fff;
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .12), 0 0 6px 0 rgba(0, 0, 0, .1);
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }

        .menu-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .menu-item h3 {
            font-size: 24px;
            font-weight: bold;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .menu-item p {
            font-size: 16px;
            color: #999;
            margin-bottom: 20px;
        }

        /* 新品推荐样式 */
        .new-food {
            padding: 80px 80px 50px 80px;
            background-color: #f5f5f5;
        }

        .new-food h2 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .new-food p {
            font-size: 16px;
            color: black;
            margin-bottom: 20px;
        }

        .new-item {
            background-color: #fff;
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .12), 0 0 6px 0 rgba(0, 0, 0, .1);
            padding: 20px;
            margin-bottom: 20px;
        }

        .new-item .img-wrap img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .new-item h3 {
            font-size: 24px;
            font-weight: bold;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .new-item p {
            font-size: 16px;
            color: #999;
            margin-bottom: 20px;
        }

        /* 分享按钮样式 */
        .share-btn {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        /* 搜索框样式 */
        .search-box {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .search-box input[type="text"] {
            padding: 10px;
            width: 300px;
        }

        .search-box button {
            padding: 10px 20px;
            background-color: #ff8c00;
            color: #fff;
            border: none;
            cursor: pointer;
        }

        .search-box button:hover {
            background-color: #ff6a00;
        }

        /* 美食新闻列表样式 */
        .news-list {
            padding: 80px 80px 50px 80px;
        }

        .news-list h2 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .news-list p {
            font-size: 16px;
            color: black;
            margin-bottom: 20px;
        }

        .news-item {
            background-color: #fff;
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .12), 0 0 6px 0 rgba(0, 0, 0, .1);
            padding: 20px;
            margin-bottom: 20px;
        }

        .news-item .img-wrap img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .news-item h3 {
            font-size: 24px;
            font-weight: bold;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .news-item p {
            font-size: 16px;
            color: #999;
            margin-bottom: 20px;
        }

        /* 关于我们样式 */
        .about-us {
            padding: 80px 80px 50px 80px;
            background-color: #f5f5f5;
        }

        .about-us h2 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .about-us p {
            font-size: 16px;
            color: black;
            margin-bottom: 20px;
        }

        /* 页尾样式 */
        footer {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
        }

        .footer-nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
        }

        .footer-nav li {
            margin: 0 10px;
        }

        .footer-nav a {
            color: #fff;
            text-decoration: none;
        }
    </style>
</head>

<body>
    <header>
        <div class="nav">
            <a href="#" class="logo">美食网站</a>
            <nav>
                <ul>
                    <li><a href="#">首页</a></li>
                    <li><a href="#">美食菜单</a></li>
                    <li><a href="#">新品推荐</a></li>
                    <li><a href="#">关于我们</a></li>
                </ul>
            </nav>
            <button class="layui-btn layui-btn-normal">登录</button>
            <button class="layui-btn layui-btn-primary">注册</button>
        </div>
        <div class="banner">
            <h1>夏日美食特辑</h1>
            <p>来点清新的美食,享受这个夏天</p>
            <button class="layui-btn layui-btn-normal">查看菜单</button>
        </div>
        <section class="search-box">
            <input type="text" placeholder="搜索美食菜单和新品推荐">
            <button class="layui-btn layui-btn-normal">搜索</button>
        </section>
    </header>
    
    <section class="about-us">
        <h2>关于我们</h2>
        <p>我们是一家致力于分享美食文化的网站,为您提供最新鲜、最美味的美食。</p>
    </section>
    <main>
        <section class="food-menu">
            <h2>美食菜单</h2>
            <p>精选美味,让你口水直流</p>
            <div class="layui-row layui-col-space15">
                <div class="layui-col-md4">
                    <div class="menu-item">
                        <img src="https://picsum.photos/id/237/400/300">
                        <h3>意大利千层面</h3>
                        <p>烤面条搭配红酒,柔软有嚼劲</p>
                        <button class="layui-btn layui-btn-normal">了解更多</button>
                    </div>
                </div>
                <div class="layui-col-md4">
                    <div class="menu-item">
                        <img src="https://picsum.photos/id/238/400/300">
                        <h3>法式鹅肝</h3>
                        <p>金黄色的香脆外皮下,鹅肝酱汁融入口感</p>
                        <button class="layui-btn layui-btn-normal">了解更多</button>
                    </div>
                </div>
                <div class="layui-col-md4">
                    <div class="menu-item">
                        <img src="https://picsum.photos/id/239/400/300">
                        <h3>日本寿司</h3>
                        <p>大米饭和各种食材的完美组合,绝妙的口感</p>
                        <button class="layui-btn layui-btn-normal">了解更多</button>
                    </div>
                </div>
                <div class="layui-col-md4">
                    <div class="menu-item">
                        <img src="https://picsum.photos/id/240/400/300">
                        <h3>意式披萨</h3>
                        <p>口感曼妙的芝士和各种佐料,让你一口接一口</p>
                        <button class="layui-btn layui-btn-normal">了解更多</button>
                    </div>
                </div>
            </div>
        </section>
        <section class="new-food">
            <h2>新品推荐</h2>
            <p>吃货的新欢,带你尝鲜</p>
            <div class="layui-row layui-col-space15">
                <div class="layui-col-md6">
                    <div class="new-item">
                        <div class="img-wrap">
                            <img src="https://picsum.photos/id/231/600/400">
                        </div>
                        <div class="text-wrap">
                            <h3>村田家的虾饺子</h3>
                            <p>村田家的虾饺子口感鲜美,虾肉鲜嫩</p>
                            <div class="share-btn">
                                <button class="layui-btn layui-btn-normal">分享</button>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="layui-col-md6">
                    <div class="new-item">
                        <div class="img-wrap">
                            <img src="https://picsum.photos/id/232/600/400">
                        </div>
                        <div class="text-wrap">
                            <h3>意大利面包</h3>
                            <p>意大利面包表皮酥脆,内部柔软细腻,真是别有风味</p>
                            <div class="share-btn">
                                <button class="layui-btn layui-btn-normal">分享</button>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </section>
        <section class="news-list">
            <h2>美食新闻</h2>
            <p>最新的美食资讯,让你第一时间了解</p>
            <div class="layui-row layui-col-space15">
                <div class="layui-col-md6">
                    <div class="news-item">
                        <div class="img-wrap">
                            <img src="https://picsum.photos/id/233/600/400">
                        </div>
                        <div class="text-wrap">
                            <h3>巧克力甜品节</h3>
                            <p>今年的巧克力甜品节将于下个月举行,敬请期待!</p>
                        </div>
                    </div>
                </div>
                <div class="layui-col-md6">
                    <div class="news-item">
                        <div class="img-wrap">
                            <img src="https://picsum.photos/id/234/600/400">
                        </div>
                        <div class="text-wrap">
                            <h3>美食节特惠</h3>
                            <p>本周末将举行美食节,各种美食特惠等你来品尝!</p>
                        </div>
                    </div>
                </div>
            </div>
        </section>
     
    </main>
    <footer>
        <div class="footer-nav">
            <ul>
                <li><a href="#">首页</a></li>
                <li><a href="#">美食菜单</a></li>
                <li><a href="#">新品推荐</a></li>
                <li><a href="#">关于我们</a></li>
            </ul>
        </div>
        <div class="copy">
            <p>© 2021 美食网站 版权所有</p>
        </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>
</body>

</html>

效果截图:

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

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

相关文章

Windows主机信息收集命令

一.常用信息搜集 whoami # 查看当前用户 net user # 查看所有用户 query user # 查看当前在线用户 ipconfig /all # 查看当前主机的主机名/IP/DNS等信息 route print # 查看路由表信息 netstat -ano # 查看端口开放情况 arp -a # 查看arp解析情况 tasklist /svc # 查看进…

有关循环依赖和三级缓存的这些问题,你都会么?(面试常问)

一、什么是循环依赖 大家平时在写业务的时候应该写过这样的代码。 其实这种类型就是循环依赖&#xff0c;就是AService 和BService两个类相互引用。 二、三级缓存可以解决的循环依赖场景 如上面所说&#xff0c;大家平时在写这种代码的时候&#xff0c;项目其实是可以起来的&am…

【Java+SQL Server】前后端连接小白教程

目录 &#x1f4cb; 流程总览 ⛳️【SQL Server】数据库操作 1. 新建数据库text 2. 新建表 3. 编辑表 ⛳️【IntelliJ IDEA】操作 1. 导入jar包 2. 运行显示错误 &#x1f4cb; 流程总览 ⛳️【SQL Server】数据库操作 打开SQL Server数据库-->sa登录-->新建数据库…

c 实用化的文本终端实时显示摄像头视频

因为采用yuv格式&#xff0c;帧率都很低。图像会拖影。把图像尺寸尽量缩小&#xff0c;能大大改善。现在最麻烦的是图像上有黑色的闪影&#xff0c;不知是为啥&#xff1f;如是framebuffer引起的就无解了。终于找到问题了&#xff0c;是在显示前加了一条用黑色清屏造成的&#…

31 - MySQL调优之SQL语句:如何写出高性能SQL语句?

从今天开始&#xff0c;我将带你一起学习 MySQL 的性能调优。MySQL 数据库是互联网公司使用最为频繁的数据库之一&#xff0c;不仅仅因为它开源免费&#xff0c;MySQL 卓越的性能、稳定的服务以及活跃的社区都成就了它的核心竞争力。 我们知道&#xff0c;应用服务与数据库的交…

【开源】基于Vue和SpringBoot的个人健康管理系统

项目编号&#xff1a; S 040 &#xff0c;文末获取源码。 \color{red}{项目编号&#xff1a;S040&#xff0c;文末获取源码。} 项目编号&#xff1a;S040&#xff0c;文末获取源码。 目录 一、摘要1.1 项目介绍1.2 项目录屏 二、功能模块2.1 健康档案模块2.2 体检档案模块2.3 健…

如何处理枚举类型(下)

作者简介&#xff1a;大家好&#xff0c;我是smart哥&#xff0c;前中兴通讯、美团架构师&#xff0c;现某互联网公司CTO 联系qq&#xff1a;184480602&#xff0c;加我进群&#xff0c;大家一起学习&#xff0c;一起进步&#xff0c;一起对抗互联网寒冬 上一篇我们通过编写MyB…

Day41力扣打卡

打卡记录 第 N 位数字&#xff08;找规律&#xff09; 链接 class Solution:def findNthDigit(self, n: int) -> int:count, digit, start 9, 1, 1while n > count:n - countdigit 1start * 10count start * 9 * digitnum start (n - 1) // digitreturn int(str(n…

Redis持久化机制

一、Redis持久化简介 Redis&#xff08;Remote Dictionary Server&#xff09;是一个高性能的键值对&#xff08;key-value&#xff09;存储系统&#xff0c;通常用作数据库、缓存和消息队列等。它支持多种数据结构&#xff0c;如字符串、哈希表、列表、集合和有序集合。Redis…

⑩【Redis Java客户端】:Jedis、SpringDataRedis、StringRedisTemplate

个人简介&#xff1a;Java领域新星创作者&#xff1b;阿里云技术博主、星级博主、专家博主&#xff1b;正在Java学习的路上摸爬滚打&#xff0c;记录学习的过程~ 个人主页&#xff1a;.29.的博客 学习社区&#xff1a;进去逛一逛~ Jedis、SpringDataRedis、StringRedisTemplate…

【Linux小项目】实现自己的bash

0. bash原理介绍 bash实际上就是一个负责解析输入字符串工具. 我们需要做的事是这些: 手动分割出输入的字符串判断哪些变量是内建命令(自己执行),哪些命令是普通命令(创建子进程执行)实现的功能有: echo export cd 常规指令 输入、输出流重定向 #include<stdio.h> #i…

【计网 面向连接的传输TCP】 中科大笔记 (十 二)

目录 0 引言1 TCP 的特性1.1 拓展&#xff1a;全双工、单工、半双工通信 2 TCP报文段结构3 TCP如何实现RDT4 TCP 流量控制4.1 题外话&#xff1a;算法感悟 5 TCP连接3次握手、断开连接4次握手5.1 连接5.2 断开连接 6 拥塞控制6.1 拥塞控制原理6.2 TCP拥塞控制 &#x1f64b;‍♂…

MFC 发布CLXHHandleEngine动态库1.0.0.0版本

第一版发布以下功能&#xff0c;此项目使用VS2013创建&#xff0c;项目配置包括Unicode的Mdd,md与多字节版本&#xff1a; //MFC Grid表格 #include "../MFCGridCtrl/GridCtrl.h" //使用AES与Base64加密解密可以与java中的AES加解密衔接 //AES加密解密 #include &q…

基于python协同过滤推荐算法的音乐推荐与管理系统

欢迎大家点赞、收藏、关注、评论啦 &#xff0c;由于篇幅有限&#xff0c;只展示了部分核心代码。 文章目录 一项目简介 二、功能三、系统四. 总结 一项目简介 基于Python的协同过滤推荐算法的音乐推荐与管理系统是一个集成了音乐推荐和管理的系统&#xff0c;它使用协同过滤算…

19. Python 数据处理之 Pandas

目录 1. 认识 Pandas2. 安装和导入 Pandas3. Pandas 数据结构4. Pandas 基本功能5. Pandas 数据分析 1. 认识 Pandas Pandas 是 Python 的核心数据分析支持库&#xff0c;提供了快速、灵活、明确的数据结构&#xff0c;旨在简单、直观地处理关系型、标记型数据。 Pandas 的出…

HarmonyOS应用开发者基础认证【题库答案】

HarmonyOS应用开发者高级认证【题库答案】 一、判断 首选项preferences是以Key-Value形式存储数据&#xff0c;其中Key是可以重复。&#xff08;错&#xff09;使用http模块发起网络请求时&#xff0c;必须要使用on(‘headersReceive’&#xff09;订阅请求头&#xff0c;请…

一、Spring_IOCDI(1)

&#x1f33b;&#x1f33b; 目录 一、前提介绍1.1 为什么要学?1.2 学什么?1.3 怎么学? 二、Spring相关概念2.1 初始Spring2.1.1 Spring家族2.1.2 了解 Spring 发展史 2.2 Spring系统架构2.2.1 系统架构图2.2.2 课程学习路线 2.3 Spring核心概念2.3.1 目前项目中的问题2.3.2…

JBase到JRT

JBase之前是站在之前基础上新做的java框架。所以带入一些老的历史习惯&#xff0c;比如库和空间都以LIS开头&#xff0c;实体只能是LIS.Model等。为了做到更通用的框架&#xff0c;需要剔除LIS特性&#xff0c;实体肯定不能只能叫LIS.Model了。同时之前只关注业务脚本化的事忘了…

2023年程序设计迎新赛(第二届个人程序设计大赛)

7-1 找规律 请从所给的四个选项中&#xff0c;选择最合适的一个填入问号处&#xff0c;使之呈现一定的规律性。 输入格式: 无 输出格式: 大写字母 输入样例: 输出样例: #include<stdio.h> int main(){printf("D");return 0; }7-2 蜡烛燃烧时间 有粗细不同…

react项目自行配置热更新

react项目自己配置热更新的话需要安装两个包pmmmwh/react-refresh-webpack-plugin和react-refresh&#xff0c;这个是官方推荐的做法。下面给出一个完整demo App.js import React, { useState } from "react";function App() {const [count, setCount] useState(0…