div+css实现简单的注册表单页面代码

代码语言:html

所属分类:表单美化

代码描述:div+css实现简单的注册表单页面代码

代码标签: div css 简单 注册 表单 页面 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">

<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Lato:400,900"rel="stylesheet'>
<style>
    *, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: #002A33;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

.form {
  width: 100%;
  max-width: 450px;
  mar.........完整代码请登录后点击上方下载按钮下载查看

网友评论0