68Design-您的线上设计部,找设计师远程工作专业平台

68Design 是您寻找优质设计师的线上平台。无论您在何处,我们都能为您提供专业的设计人才。我们的使命是帮助公司找到最合适的设计师,同时为设计师提供更多的远程工作机会。

网站介绍

访问我们的网站(请点击以下链接跳转至手机端页面):https://m.68design.net,您将看到一个精美的设计,同时能够了解我们的服务内容。

HTML结构

<!DOCTYPE html>  
<html lang="zh-CN">  
<head>  
<meta charset="UTF-8">  
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">  
<link rel="stylesheet" type="text/css" href="/css/index.css">  
<title>68Design</title>  
</head>  
<body>  
<!-- 页面内容 -->  
</body>  
</html>  

CSS样式

html {  
background: #ffffff;  
}  
  
a {  
transition: ease .3s;  
}  
  
.deptbanner {  
padding: 80px 0 0;  
background: #fff;  
overflow: hidden;  
}  
  
.deptbanner h1 {  
font-size: 56px;  
text-align: center;  
margin-bottom: 22px;  
color: #191919;  
}  
  
.deptbanner h2 {  
font-size: 18px;  
text-align: center;  
margin-bottom: 35px;  
color: #666666;  
font-weight:normal;  
}  
  
.deptbanner .fasttrack {  
text-align: center;  
}  

以上代码定义了基本的HTML和CSS样式。其中,.deptbanner类定义了一个带有标题和副标题的横幅区域。.fasttrack类用于居中显示文本。