-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9be20df
commit 35065e5
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<meta name="Description" content="Enter your description here"/> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.0.0-alpha1/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"> | ||
<link rel="stylesheet" href="assets/css/style.css"> | ||
<title>Bài Tập Git 5</title> | ||
</head> | ||
<body> | ||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.1/umd/popper.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.0.0-alpha1/js/bootstrap.min.js"></script> | ||
|
||
<div class="container"> | ||
<div class="row justify-content-center align-items-center"> | ||
<div class="card"> | ||
<div class="card-header border-danger text-light bg-danger"> | ||
Thông tin cá nhân | ||
</div> | ||
<div class="card-body"> | ||
<table class="table table-hover table-bordered"> | ||
<tbody> | ||
<tr> | ||
<td>Họ tên sinh viên</td> | ||
<td>Cao Tấn Đức</td> | ||
</tr> | ||
<tr> | ||
<td>Email</td> | ||
<td>duccao147@gmail.com</td> | ||
</tr> | ||
<tr> | ||
<td>Số điện thoại</td> | ||
<td>0869209794</td> | ||
</tr> | ||
<tr> | ||
<td>Trường</td> | ||
<td>ISC Quang Trung</td> | ||
</tr> | ||
<tr> | ||
<td>Sở thích</td> | ||
<td>Coding, nghe nhạc, đọc sách</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |