forked from HackingHistory/api-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (45 loc) · 1.95 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
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Your Title Here</title>
<!-- external resources -->
<!-- steal some base styles from chota: https://jenil.github.io/chota/ -->
<link rel="stylesheet" href="https://unpkg.com/chota@latest">
<!-- customize in this file -->
<link rel="stylesheet" href="style.css">
<style>
</style>
</head>
<body>
<nav class="bg-primary">
<div class="nav-center">
<h1><a class="brand" href="#">Your Title Here</a></h1>
</div>
</nav>
<main id="cardcontainer">
<section class="card">
<header class="card-header">
Card Subject
</header>
<img class="profile-image" src="images/your-img.jpg" alt="Description of Image for non-graphic viewers" title="Image Title">
<section class="card-body">
<p class="card-text"><b>Your Categories:</b> ...content</p>
<!-- THis code is ocmmented out, but I'm leaving it here as an example -->
<!-- <figure>
<figure-caption>Tech Skills</figure-caption>
<div class="progress-bar">
<span class="progress-bar-fill" style="width: 80%;" title="4 stars"></span>
</div>
</figure> -->
<p>Longer description goes here; will be slightly painful, but write it out in HTML.</p>
</section> <!-- card-body -->
<footer class="card-footer text-center">
<a href="link-address" class="button">Feel Free to use a button</a>
<a href="link-address" class="button">... Or Two</a>
</footer> <!-- card-footer -->
</section>
</main>
<script type="module" src="main.js"></script>
</body>
</html>