用vscode代码写一个QQ网页
以下是一个简单的QQ网页的HTML代码示例:
<!DOCTYPE html>
<html>
<head>
<title>QQ Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
#container {
width: 800px;
margin: 0 auto;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
h1 {
text-align: center;
color: #555;
}
#login-form {
text-align: center;
margin-top: 50px;
}
input[type="text"], input[type="password"] {
padding: 10px;
width: 300px;
margin-bottom: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}
input[type="submit"] {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="container">
<h1>QQ Webpage</h1>
<form id="login-form">
<input type="text" placeholder="QQ号码" required><br>
<input type="password" placeholder="密码" required><br>
<input type="submit" value="登录">
</form>
</div>
</body>
</html>
你可以将这段代码复制到VSCode中的HTML文件中,然后使用VSCode的Live Server或其他工具来查看和运行网页。这个示例代码创建了一个简单的QQ登录页面,包括QQ号码和密码的输入框以及一个登录按钮
原文地址: http://www.cveoy.top/t/topic/iZO6 著作权归作者所有。请勿转载和采集!