-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
177 lines (141 loc) · 4.78 KB
/
index.html
File metadata and controls
177 lines (141 loc) · 4.78 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<style>
p {
color: rebeccapurple;
}
</style>
</head>
<body>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<h1>Books are the treasure in my live</h1>
<a href="contact.html">contact us</a> <br>
<a href="skill.html">my-skill</a> <br>
<a href="about-us.html">about us </a> <br>
<h1>sua doi lan 1</h1>
<a href="mailto:tuanpc@gmail.com?cc=tuanpctuanpctuanpc@tuanpc.com">mail to me</a>
<hr>
<h2>Welcome tomy store</h2>
<a href="https://google.com">
<img src="https://images.unsplash.com/photo-1604866830893-c13cafa515d5?w=900&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Ym9va3N8ZW58MHx8MHx8fDA%3D , width=device-width "
title="my store tuanopc">
</a>
<br>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Inventore totam ipsum fugit dolorem fugiat, deleniti
hic
Lorem ipsum dolor sit amet consectetur adipisicing elit. Assumenda est numquam quam, dicta rem, vel sed
cupiditate
commodi ab nulla optio dolores, nihil expedita provident in corporis reprehenderit minus quisquam!
Laborum numquam eaque corrupti ipsa, ex alias vero invengit tore ducimus deserunt quasi aperiam maiores. Alias,
accusantium. Consequuntur, corporis officia neque, vel dignissimos itaque perferendis pariatur quaerat molestias
laudantium quidem nesciunt!
</p>
<hr>
<!-- thẻ pre giữ nguyên định dạng văn bản( không xóa dấu cách, tab,...)-->
<pre>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Suscipit perspiciatis reprehenderit veritatis dignissimos
placeat neque, deserunt explicabo atque et recusandae ut voluptates minima facilis minus tenetur porro fugiat nulla
voluptas.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Atque voluptatibus reprehenderit accusantium consequuntur
obcaecati labore ipsam minima veniam sit qui temporibus similique mollitia ad excepturi alias laboriosam, itaque
tempora dolorum?</pre>
<p> nhánh congviec1 sửa lần 1</p>
<!-- html entities -->
<t> chúng ta dùng thẻ <h1></h1> để đặt tiêu đề </t>
<!-- thẻ code -->
<code><pre><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head></pre></code>
<!-- học thẻ table -->
<table>
<thead>
<th>tên sản phẩm </th>
<th>giá thành </th>
</thead>
<tbody>
<tr>
<td>quần jeans </td>
<td> 100k</td>
</tr>
<tr>
<td>áo phông </td>
<td>200k</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>tổng cộng</td>
<td> 300k</td>
</tr>
</tfoot>
</table>
<!-- colspan, rowspan -->
<table>
<thead>
<tr>
<th colspan="2">tên sản phẩm </th>
<th>giá sản phẩm</th>
<th>số lượng còn lại</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="4">phụ kiện bên ngoài</td>
</tr>
<tr>
<td>áo thun nam</td>
<td>100.000</td>
<td>50</td>
</tr>
<tr>
<td>quần jeans nữ</td>
<td>200.000</td>
<td>20</td>
</tr>
<tr>
<td>giày thể thao</td>
<td>300.000</td>
<td>30</td>
</tr>
<tr>
<td rowspan="4">trang sức</td>
</tr>
<tr>
<td>bông tai</td>
<td>1.000.000</td>
<td> 10</td>
</tr>
<tr>
<td>dây chuyền</td>
<td>3.000.000</td>
<td>20</td>
</tr>
<tr>
<td>đồng hồ</td>
<td>4.000.000</td>
<td>5</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">remark</td>
<td colspan="2">chỉ thống kê sản phẩm trong kho</td>
</tr>
</tfoot>
</table>
<h1>tiêu đề</h1>
thing
</body>
</html>