-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFORMvsControl.html
81 lines (78 loc) · 4.55 KB
/
FORMvsControl.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>bailam</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<nav class="navbar navbar-light navbar-expand-md" style="padding: 0px;">
<div class="container-fluid">
<div></div>
<div class="collapse navbar-collapse d-lg-flex justify-content-lg-center" id="navcol-1">
<ul class="navbar-nav">
<li class="nav-item" style="height: 40px;width: 200px;"><a class="nav-link" href="#index.html">Trang
chủ</a></li>
<li class="nav-item" style="width: 200px;background: rgba(255,187,125,0);"><a class="nav-link"
href="#https://is.uel.edu.vn/" style="width: 100%;">Liên Kết</a>
<ul class="list-unstyled">
<li><a class="menu" href="https://is.uel.edu.vn/">Khoa HTTT</a></li>
</ul>
</li>
<li class="nav-item" style="width: 200px;"><a class="nav-link active" href="#"
style="width: 100%;">Góc học tập</a>
<ul class="list-unstyled">
<li><a class="menu" href="XMLvsDOM.html">XML & DOM</a></li>
<li><a class="menu" href="jsonObjectvsArray.html">Json Object & Json Array</a></li>
<li><a class="menu" href="FORMvsControl.html">FORM và Control FORM</a></li>
</ul>
</li>
<li class="nav-item" style="background: rgba(255,187,125,0);width: 200px;"><a class="nav-link"
href="register.html" style="width: 100%;">Đăng ký</a></li>
</ul>
</div>
</div>
</nav>
<section class="flex-row" style="width: 100%;height: 600px;">
<div class="container" style="width: 100%;padding: 0px;margin: 0px;height: 600px;">
<div class="row" style="margin: 0px;width: 100%;height: auto;">
<div class="col-md-6 d-lg-flex justify-content-lg-center"
style="width: 30%;padding: 0px;height: 600px;">
<marquee direction="up">
<img src="assets/img/avatar.jpg" style="height: 288px;width: 288px;">
</marquee>
</div>
<div class="col-md-6 col-lg-8" style="width: 70%;padding-right: 0px;padding-left: 0px;">
<div>
<h3>Các thuộc tính của form</h3>
<p><span style="color: rgb(0, 0, 0);">name: tên FORM</span><br></p>
<p><span style="color: rgb(0, 0, 0);">action : chỉ định trang web sẽ nhận xử lý dữ liệu từ FORM
này khi có sự kiện click của button SUBMIT</span><br></p>
<p><span style="color: rgb(0, 0, 0);">method : Xác định phương thức chuyển dữ liệu (POST, GET,
PUT, DELETE)</span><br></p>
<p><span style="color: rgb(0, 0, 0);">Button: Sử dụng để người dùng ra lệnh thực hiện công
việc.</span><br></p>
<h3>Phân biệt các loại button:</h3>
<ul>
<li style="background: rgba(255,187,125,0);"><span
style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">submit: Tự động
ra lệnh gửi dữ liệu</span><br></li>
<li style="background: rgba(255,187,125,0);"><span style="color: rgb(0, 0, 0);">reset: đưa
mọi dữ liệu về trạng thái mặc định</span><br></li>
<li style="background: rgba(255,187,125,0);"><span style="color: rgb(0, 0, 0);">normal:
người lập trình tự xử lý</span><br></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<footer>
<p class="d-lg-flex justify-content-lg-end" id="today"></p>
</p>
</footer>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>