64 lines
1.1 KiB
PHP
64 lines
1.1 KiB
PHP
<!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">
|
|
<title>Document</title>
|
|
|
|
<style>
|
|
.box-pai {
|
|
width: 65mm;
|
|
height: 95mm;
|
|
border: 1px solid blue;
|
|
}
|
|
|
|
.row {
|
|
border: 1px solid red;
|
|
background-color: aqua;
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
.col {
|
|
border: 1px solid green;
|
|
width: 32.50%;
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
.test {
|
|
width: 10mm;
|
|
height: 10mm;
|
|
border: 1px solid blue;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="box-pai">
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="test"></div>
|
|
</div>
|
|
<div class="col">
|
|
ISPT 4.0
|
|
</div>
|
|
<div class="col">
|
|
<img src="{{ $userLogoPath }}" alt="User Logo">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|