<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>明金同学个人网页</title>
<style type="text/css">
/* CSS Document */
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
.clearfix:after {
content: "";
display: block;
height: 0;
visibility: hidden;
clear: both;
}
.clearfix {
*zoom: 1;
}
body {
background: url(https://gitee.com/vmu/cimg/raw/master/img/bg.jpg) no-repeat;
background-size: cover;
background-attachment: fixed;
}
.content {
width: 900px;
height: 500px;
margin: 200px auto 0 auto;
border-radius: 10px;
background-color: rgba(236, 236, 236, 0.59);
transition: all 1.0s;
/*box-shadow: 0px 0px 20px rgba(0,0,0,0.3);*/
}
.content img {
float: left;
width: 200px;
height: 200px;
margin: 150px 0 0 80px;
border-radius: 100px;
}
.content:hover {
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.52);
}
.content_r {
float: right;
width: 500px;
margin: 80px 60px 0 0;
/* background-color: pink;*/
}
.content_l {
float: left;
width: 100%;
text-align: center;
}
.content_l h5 {
font-size: 17px;
}
.cc {
margin-top: 10px;
color: #1F2023;
font-size: 18px;
}
.color_1 {
color: #4855EC;
font-size: 18px;
}
.deeppink {
color: deeppink;
}
.link {
margin-top: 30px;
}
.link a {
display: block;
float: left;
width: 120px;
height: 45px;
margin: 5px 5px 0 0;
/* padding: 0 15px;*/
color: #fff;
line-height: 45px;
transition: all 0.8s;
/* background-color: deeppink;*/
}
.link a:hover {
background-color: rgba(0, 201, 243, 0.35);
}
.deeppink_1 {
background-color: deeppink;
}
.dodgerblue {
background-color: dodgerblue;
}
.magenta {
background-color: magenta;
}
.orange {
background-color: orange;
}
</style>
</head>
<body>
<div class="content">
<img src="https://gitee.com/vmu/cimg/raw/master/img/ch.jpg" alt="">
<div class="content_r clearfix">
<div class="content_l clearfix">
<h2>Hi~ 我是明金同学, Welcome here !</h2>
<p class="cc">欢迎来到我的主页,一位热爱编程的小渣渣~</p>
<p class="cc">爱好计算机,会去自学一些感兴趣的东西 !</p>
<br>
<p class="color_1">I am an ambitious salted fish!</p>
<p class="color_1">我是一位有野心的咸鱼!</p>
<br>
<p class="deeppink">只要路是对的,就不怕路远。</p>
<p class="deeppink">As long as the road is right, you are not afraid of the distance.</p>
<div class="link">
<a href="#" class="dodgerblue" target="_blank">官网</a>
<a href="https://ymjin.blog.csdn.net/" class="deeppink_1" target="_blank">QQ群</a>
<a href="https://ymjin.blog.csdn.net/" class="magenta" target="_blank">个人博客</a>
<a href="https://ymjin.blog.csdn.net/" class="orange" target="_blank">网易云音乐</a>
</div>
</div>
</div>
</div>
</body>
</html>
素材:
分享一个好看的个人主页源码
原创
©著作权归作者所有:来自51CTO博客作者明金同学的原创作品,请联系作者获取转载授权,否则将追究法律责任
效果:
代码:
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Facebook企业户 | Facebook个人主页
什么是Facebook个人主页?Facebook个人主页是用户在该社交平台上的个人展示页面。
Facebook Facebook代理商 Facebook代投 Facebook代运营 Facebook企业户 -
个人主页的分类操作
个人主页,时间,类型,各种分类的方法
个人 主页 分类 -
个人主页数据添加
个人主页数据添加
个人 主页 数据添加 -
SpringBoot中hikari配置大全详解
在Java中,我比较ORM熟悉的只有Hibernate和Mybatis,其他的并未实践使用过,在这二者之间我更喜欢Mybatis,因为它精简、灵活(毕竟我是上年纪的程序员,喜欢自己写SQL)。刚才有提到Mybatis,但是这里的重点是介绍Mybatis-Plus,它是Mybatis的增强版,如果要了解Mybatis的细节的话请点击这里。简介据MyBatis-Plus官网介绍,MyBatis-Plu
hikaricp druid比较 springboot druid springboot整合nacos spring整合druid bc -
Linux监控mysql进程
进程(Process)是程序运行的一个实例,是定义在多用户、多任务操作系统环境下用于表示应用程序在内存环境中基本执行单元。系统分配资源的基本单位。 CPU 数量有限,而系统上要运行的任务(进程)很多,在任意时刻CPU只能运行一个进程。采用分时
Linux监控mysql进程 操作系统 运维 数据结构与算法 Max