87 lines
2.0 KiB
HTML
87 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>CAOTEK Portal</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<style>
|
|
.container {
|
|
padding: 80px 80px;
|
|
}
|
|
.bg-1 {
|
|
background: DarkSlateGray ;
|
|
color: #fff;
|
|
}
|
|
.bg-1 h2 {color: #fff;}
|
|
.bg-1 p {
|
|
font-style: italic;
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
/* Remove border and add padding to thumbnails */
|
|
.thumbnail {
|
|
padding: 0 0 15px 0;
|
|
border: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.thumbnail p {
|
|
margin-top: 15px;
|
|
color: #555;
|
|
}
|
|
|
|
/* Black buttons with extra padding and without rounded borders */
|
|
.btn {
|
|
margin-top: 15px;
|
|
padding: 10px 20px;
|
|
background-color: #333;
|
|
color: #f1f1f1;
|
|
border-radius: 0;
|
|
transition: .2s;
|
|
}
|
|
|
|
/* On hover, the color of .btn will transition to white with black text */
|
|
.btn:hover, .btn:focus {
|
|
border: 1px solid #333;
|
|
background-color: #fff;
|
|
color: DarkSlateGray;
|
|
}
|
|
</style>
|
|
|
|
<!-- Container (TOUR Section) -->
|
|
<div id="tour" class="bg-1">
|
|
<div class="container">
|
|
<h2 class="text-center">CAOTEK<br>présente</h2>
|
|
<br>
|
|
<br>
|
|
<div class="row text-center">
|
|
<div class="col-sm-4">
|
|
<div class="thumbnail">
|
|
<img src="logo_an.jpg" alt="Logo An" />
|
|
<button class="btn">____ THIEN AN ____</button>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="thumbnail">
|
|
<img src="logo_khang.jpg" alt="Logo Khang" />
|
|
<button class="btn">____ THIEN-KHANG ____</button>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="thumbnail">
|
|
<img src="logo_phuoc_400x500.jpg" alt="Logo Phuoc" />
|
|
<button class="btn">____ THIS IS THE WAY ____</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |