42 lines
1.4 KiB
HTML
Executable File
42 lines
1.4 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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">
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="app.js" defer></script>
|
|
<script src="https://code.jquery.com/jquery-3.6.1.min.js"></script>
|
|
<title>Search tool</title> <!--Sounds awkward-->
|
|
</head>
|
|
<body>
|
|
<a href="../index.html">
|
|
<img width="500" src="../images/TheUnderlandLogo.png" />
|
|
</a>
|
|
<form>
|
|
<img width="200" src="../images/underlandReturnButton.png" onclick="history.back()"/>
|
|
<style>
|
|
img:hover {
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</form>
|
|
|
|
<div class="search-wrapper">
|
|
<label for="search">Search Pages</label>
|
|
<input type="search" id="search" data-search>
|
|
</div>
|
|
|
|
<div class="user-cards" data-user-cards-container></div>
|
|
|
|
<template data-user-template>
|
|
<div class="card">
|
|
<div class="header" data-header></div>
|
|
<a class="hyperlink" href="" data-link></a>
|
|
<div class="body" data-body></div>
|
|
</div>
|
|
</template>
|
|
<br/>
|
|
<div class="bigDivToFillOutSpace"></div>
|
|
</body>
|
|
</html> |