hrnet_pytorch / templates /about.html
galaxygummybear's picture
Add new files
d9c9757
Raw
History Blame Contribute Delete
4.88 kB
<!DOCTYPE html>
<html lang="en">
<!-- templates\about.html Head -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blood Classification - About</title>
<link rel="stylesheet" href="/static/style.css">
<link rel="icon" type="image/png" href="/static/images/logo-modified.png" />
<script>
document.addEventListener('contextmenu', (event) => {
event.preventDefault();
});
document.onkeydown = (event) => {
if (event.ctrlKey && (event.key === 'c' || event.key === 'C')) {
alert('Sorry, copying is not allowed.');
event.preventDefault();
} else if (event.ctrlKey && (event.key === 'u' || event.key === 'U')) {
alert('Sorry, viewing the source is not allowed.');
event.preventDefault();
} else if (event.ctrlKey && event.shiftKey && (event.key === 'i' || event.key === 'I')) {
alert('Sorry, inspecting is not allowed.');
event.preventDefault();
}
};
</script>
</head>
<!-- templates\about.html Body -->
<body>
<main class="bck-img">
<div class="header-background">
<header class="header container">
<div class="logo-wrapper">
<a href="/" class="logo">
<img src="/static/images/logo.png" alt="logo" />
<h1>Blood Classification</h1>
</a>
</div>
<!-- Large Screen Version -->
<nav class="nav">
<a href="/" class="nav-link" id="image-classification-link">Image Classification</a>
<a href="/about" class="nav-link active" id="about-link">About</a>
</nav>
</header>
</div>
<!-- Mobile Version -->
<div class="mob-menu">
<img class="mob-open" src="/static/images/120px-Hamburger_icon_white.svg.png" alt="openSvg" />
<div class="mob-wrapper">
<img src="/static/images/icons8-close.svg" class="mob-close" alt="closeSvg"/>
<div class="mob-list">
<a href="/" class="mob-list-item" >
<img src="/static/images/logo.png" alt="logo" id="mob-list-item-head-logo"/>
<h5>Blood Classification</h1>
</a>
<a href="/" class="mob-list-item" id="image-classification-link-mob">Image Classification</a>
<a href="/about" class="mob-list-item active" id="about-link-mob">About</a>
</div>
</div>
</div>
<!-- About Content -->
<main>
<section class="about-section">
<h2 id="about-title">About Blood Classification</h2>
<p>These are the lecturers/researchers involved in this project:</p>
<div class="lecturers-wrapper">
<div class="lecturer-card">
<img src="static\images\nophoto.png" alt="Lecturer 1" style="border-radius: 10px;">
<h3>Dr.Afzan Adam</h3>
</div>
<div class="lecturer-card">
<img src="static\images\nophoto.png" alt="Lecturer 2" style="border-radius: 10px;">
<h3>Dr.Azizi Abdullah</h3>
</div>
<div class="lecturer-card">
<img src="static\images\nophoto.png" alt="Lecturer 3" style="border-radius: 10px;">
<h3>Dr.Shahnorbanun Sahran</h3>
</div>
<div class="lecturer-card">
<img src="static\images\nophoto.png" alt="Lecturer 4" style="border-radius: 10px;">
<h3>Dr. Raja Zahratul Azma Raja Sabudin</h3>
</div>
</div>
</section>
</main>
</main>
<script src="/static/script.js"></script>
<script>
document.addEventListener('contextmenu', (event) => {
event.preventDefault();
});
document.onkeydown = (event) => {
if (event.ctrlKey && (event.key === 'c' || event.key === 'C')) {
alert('Sorry, copying is not allowed.');
event.preventDefault();
} else if (event.ctrlKey && (event.key === 'u' || event.key === 'U')) {
alert('Sorry, viewing the source is not allowed.');
event.preventDefault();
} else if (event.ctrlKey && event.shiftKey && (event.key === 'i' || event.key === 'I')) {
alert('Sorry, inspecting is not allowed.');
event.preventDefault();
}
};
</script>
</body>
</html>