HTML 首页 欢迎页

简介: HTML 首页 欢迎页

HTML 首页 欢迎页,将下面代码复制出来,贴到HTML中,直接运行

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>VipSoft</title>
    <style>
        *{
            padding: 0;
            margin: 0;
            font-family: "楷体";
        }
        header{
            background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(https://static.vecteezy.com/system/resources/previews/000/622/564/original/ai-concept-vector.jpg);
            height: 100vh;
            background-size: cover;
            background-position: center;
        }
    
        ul{
            float: right;
            list-style-type: none;
            margin: 15px;
        }
        ul li{
            display: inline-block;
        }
    
        ul li a{
            text-decoration: none;
            color: #fff;
            padding: 5px 20px;
            border: 1px solid transparent;
            transition: .6s ease;
            border-radius: 20px;
        }
    
        ul li a:hover{
            background-color: #fff;
            color: #000;
        }
        ul li.active a{
            background-color: #fff;
            color: #000;
        }
        .title{
            position: absolute;
            top:50%;
            left:50%;
            transform: translate(-50%,-50%);
        }
        .title h1{
            color: #fff;
            font-size: 70px;
            font-family: Century Gothic;
        }
    </style>
</head>
<body>
    <header>
        <div class="main">
            <ul>
                <li class="active"><a href="#">首页</a></li>
                <li><a href="http://www.vipsoft.com.cn/" target="_blank"><span style="color: crimson;">Vip</span>Soft</a></li>
                <li><a href="https://www.cnblogs.com/vipsoft/" target="_blank">博客</a></li>
                <li><a href="https://gitee.com/vipsoft" target="_blank">开源</a></li>                
            </ul>
        </div>
        <div class="title">
            <h1><span style="color: crimson;">VipSoft</span> AI</h1>
        </div>
    </header>
</body>
</html>

本文来自博客园,作者:VipSoft 转载请注明原文链

目录
相关文章
|
8月前
|
移动开发 HTML5
html5初音未来减压页面源码
A Mainland China friendly and independent version extracted from https://aidn.jp/mikutap
150 2
|
5月前
|
移动开发 HTML5
分享小诗梦404炫酷单页面html5源码
分享小诗梦404炫酷单页面html5源码,小诗梦的一个很炫酷页面,感觉应该符合一些人的感觉!可以用来做404页面。
41 1
|
5月前
|
前端开发
html&CSS的实现的登录页效果|记得收藏
html&CSS的实现的登录页效果|记得收藏
|
6月前
2024较火的软件宣传单页HTML源码
2024较火的软件宣传单页HTML源码,源码由HTML+CSS+JS组成,记事本打开源码文件可以进行内容文字之类的修改,双击html文件可以本地运行效果
116 4
2024较火的软件宣传单页HTML源码
|
8月前
比较美观的跳转加载页html源码
比较美观的跳转加载页html源码,源码由HTML+CSS+JS组成,记事本打开源码文件可以进行内容文字之类的修改,双击html文件可以本地运行效果
146 0
比较美观的跳转加载页html源码
|
8月前
|
移动开发 HTML5
唯美首页纯静态html源码
唯美首页纯静态html5引导页源码,格子化win8风格官方引导页面源码
192 0
唯美首页纯静态html源码
HTML实现用户注册页面
HTML实现用户注册页面
83 0
|
前端开发
HTML侧边导航栏
本文用最简洁的语言,来教会读者,如果用html+css来制作,侧边导航栏,本案例以手机商城中的部分为例子来制作。
244 0
HTML侧边导航栏
|
Java 开发者
页面静态之生成 html 页面 | 学习笔记
快速学习页面静态之生成 html 页面
125 0