mirror of
https://github.com/mandiant/capa.git
synced 2025-12-12 07:40:38 -08:00
50 lines
1.1 KiB
HTML
50 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="img/icon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>capa</title>
|
|
<style>
|
|
/*
|
|
Josh's Custom CSS Reset
|
|
https://www.joshwcomeau.com/css/custom-css-reset/
|
|
*/
|
|
*, *::before, *::after {
|
|
box-sizing: border-box;
|
|
}
|
|
* {
|
|
margin: 0;
|
|
}
|
|
body {
|
|
line-height: 1.5;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
img, picture, video, canvas, svg {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
input, button, textarea, select {
|
|
font: inherit;
|
|
}
|
|
p, h1, h2, h3, h4, h5, h6 {
|
|
overflow-wrap: break-word;
|
|
}
|
|
#root, #__next {
|
|
isolation: isolate;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div style="height: 100%; display: flex; align-items: center; justify-content: center;">
|
|
<div>
|
|
<!-- this is centered -->
|
|
<img src="./img/icon.png" />
|
|
<br />
|
|
<a href="./explorer/">capa Explorer Web<a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|