校园歌手大赛报名 - 展现你的音乐才华
<!DOCTYPE html>
<html>
<head>
<title>校园歌手大赛报名</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
background-image: url('background.jpg');
background-size: cover;
background-repeat: no-repeat;
color: #fff;
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
margin: 0;
padding: 0;
}
.container {
margin-top: 50px;
}
h1 {
font-size: 48px;
font-weight: bold;
margin-bottom: 30px;
text-align: center;
text-shadow: 2px 2px #000;
}
.form-group {
margin-bottom: 20px;
}
label {
font-size: 24px;
font-weight: bold;
}
input[type=text], input[type=password] {
border-radius: 0;
border: none;
border-bottom: 2px solid #fff;
background-color: transparent;
color: #fff;
font-size: 18px;
padding: 10px;
width: 100%;
}
input[type=submit] {
background-color: #fff;
border-radius: 0;
border: none;
color: #000;
font-size: 24px;
font-weight: bold;
padding: 10px;
width: 100%;
}
input[type=submit]:hover {
background-color: #000;
color: #fff;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h1>校园歌手大赛</h1>
<form>
<div class="form-group">
<label for="username">用户名:</label>
<input type="text" class="form-control" id="username" placeholder="请输入用户名">
</div>
<div class="form-group">
<label for="password">密码:</label>
<input type="password" class="form-control" id="password" placeholder="请输入密码">
</div>
<input type="submit" value="登录">
</form>
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/kpcs 著作权归作者所有。请勿转载和采集!