-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06(小例子).html
53 lines (50 loc) · 1.07 KB
/
06(小例子).html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>这是鱼爸爸的网址</title>
<script type="text/javascript">
// +链接2边字符串
var name = prompt("请输入的姓名");
var password = prompt("请输入你的密码");
document.write("你好!尊敬的"+name+"先生/女士,你的密码为:"+password+ "请妥善保管")
</script>
<!--<style type="text/css">
#meituan{
width: 100%;
height: 200px;
border: 1px solid red;
}
.one{
width: 25%;
/* border: 1px solid red;*/
float: left;
text-align: center;
}
.two{
width: 25%;
text-align: center;
float: left;
}
.thr{
width: 25%;
text-align: center;
float: left;
}
.four{
width: 25%;
text-align: center;
float: right;
}
</style>-->
</head>
<body>
<!--<div id="meituan">
<h3>美团钱包</h3>
<div class="one">我的钱包</div>
<div class="two">红包</div>
<div class="thr">银行卡</div>
<div class="four">余额</div>
</div>-->
</body>
</html>