82 lines
1.6 KiB
HTML
82 lines
1.6 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: 5px;
|
|
margin: 25px;
|
|
border: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.thumbnail p {
|
|
margin-top: 15px;
|
|
color: #555;
|
|
}
|
|
img {
|
|
opacity: 1.0;
|
|
}
|
|
|
|
img:hover {
|
|
opacity: 0.5;
|
|
}
|
|
</style>
|
|
|
|
<!-- Container (TOUR Section) -->
|
|
<div id="tour" class="bg-1">
|
|
<div class="container">
|
|
<h2 class="text-center">CAOTEK</h2>
|
|
<p class="text-center">présente</p>
|
|
<br>
|
|
<br>
|
|
<div class="row text-center">
|
|
<div class="col-sm-4">
|
|
<div class="thumbnail">
|
|
<a href="https://thienan.caotek.fr">
|
|
<img src="logo_an.jpg" alt="Logo An" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="thumbnail">
|
|
<a href="https://khang.caotek.fr">
|
|
<img src="logo_khang.jpg" alt="Logo Khang" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="thumbnail">
|
|
<a href="https://phuoc.caotek.fr">
|
|
<img src="logo_phuoc.jpg" alt="Logo Phuoc" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |