保存进度!
This commit is contained in:
48
code/web/car_dealer/vue/表单.html
Normal file
48
code/web/car_dealer/vue/表单.html
Normal file
@@ -0,0 +1,48 @@
|
||||
<!--
|
||||
* @Author: Kane
|
||||
* @Date: 2022-11-12 23:21:53
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2022-11-13 00:29:50
|
||||
* @FilePath: \car_dealer\vue\表单.html
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>表单</title>
|
||||
<link rel="stylesheet" href="../css/root.css">
|
||||
<link rel="stylesheet" href="../css/normalize.css">
|
||||
<link rel="stylesheet" href="../css/button.css">
|
||||
<link rel="stylesheet" href="../css/app.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="content">
|
||||
<div id="app">
|
||||
<div class="gird-left grid-firstname">
|
||||
<p>姓:</p>
|
||||
</div>
|
||||
<div class="gird-right grid-firstname"><input type="text" placeholder=""></div>
|
||||
<div class="gird-left grid-lasttname">
|
||||
<p>名:</p>
|
||||
</div>
|
||||
<div class="gird-right grid-lasttname"><input type="text"></div>
|
||||
|
||||
<div class="gird-left gird-sex">
|
||||
<p>性别:</p>
|
||||
</div>
|
||||
<div class="gird-right gird-sex"><input type="radio" name="sex" id="male" value="male"><label
|
||||
for="male">男</label>
|
||||
<input type="radio" name="sex" id="female" value="female"><label for="female">女</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user