質問編集履歴
1
訂正コード
title
CHANGED
File without changes
|
body
CHANGED
@@ -42,4 +42,41 @@
|
|
42
42
|
padding: 7px 15px;}
|
43
43
|
.b2:hover{text-decoration: none; color: white;}
|
44
44
|
.b2{color: white;}
|
45
|
+
```
|
46
|
+
|
47
|
+
```HTML
|
48
|
+
<!DOCTYPE html>
|
49
|
+
<html lang="en">
|
50
|
+
<head>
|
51
|
+
<meta charset="UTF-8">
|
52
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
53
|
+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
54
|
+
<link rel="stylesheet" type="text/css" href="test.css">
|
55
|
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
56
|
+
<title>模写1</title>
|
57
|
+
</head>
|
58
|
+
<body>
|
59
|
+
<div class="container-fluid">
|
60
|
+
<div class="row justify-content-between">
|
61
|
+
<!--##############header##################-->
|
62
|
+
<div class="col">
|
63
|
+
<a href="#">
|
64
|
+
|
65
|
+
<img class="logo" src="https://seeklogo.com/images/A/airbnb-logo-1D03C48906-seeklogo.com.png" a href="#" height="30px" width="30px">
|
66
|
+
</a>
|
67
|
+
</div>
|
68
|
+
<div class="col-auto">
|
69
|
+
<ul class="row">
|
70
|
+
<li class="col">予想月収</li>
|
71
|
+
<li class="col"><h4>¥151,550</h4></li>
|
72
|
+
<li class="button col"><a href="#" class="b2">はじめる</a></li></ul></div>
|
73
|
+
<div class="box"></div>
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
</div>
|
78
|
+
</div>
|
79
|
+
|
80
|
+
</body>
|
81
|
+
</html>
|
45
82
|
```
|