-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (37 loc) · 1.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>Dr. Trevor M. Tomesh</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="sidebar">
<input type="text" id="search" placeholder="Search">
<ul id="tag-list">
<!-- "All" tag will be dynamically generated here -->
</ul>
<div class="badge-box">
<div class="badge">
<p><a href="https://chat.openai.com/" target="_blank"><img
src="https://img.shields.io/badge/Co_authored%20by-ChatPT-9cf?logo=openai&logoColor=white"
alt="Coauthored by ChatGPT"></a></p>
</div>
<div class="badge">
<p><a href="https://replit.co/"><img src="https://replit.com/badge?caption=Powered%20By%20Replit"></a></p>
</div>
</div>
</div>
<div id="content">
<h1>Dr. Trevor Michael Tomesh</h1>
<div class="container" id="card-container">
<!-- Cards will be dynamically generated here -->
</div>
</div>
<footer>
<div id="copyright">
<b>© 2024 Trevor M. Tomesh</b>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>