initial upload

This commit is contained in:
2023-08-09 10:39:59 +02:00
parent 17b5e54e6c
commit fa899bfa82
4 changed files with 87 additions and 0 deletions

87
index.html Normal file
View File

@@ -0,0 +1,87 @@
<!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>

BIN
logo_an.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
logo_khang.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
logo_phuoc_400x500.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB