-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
37 lines (33 loc) · 1.2 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<meta charset="UTF-8">
<link rel="stylesheet" href="main.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer type="module" src="./js/main.js"></script>
<title>Sophia - About</title>
</head>
<body>
<nav>
<div class="nav-wrapper">
<a href="./index.html">Home</a>
<a href="./search.html">Search</a>
<a href="./about.html">About</a>
</div>
</nav>
<div class="container-fluid">
<div class="title-container">
<h1><b>Hello!</b></h1>
<p><em>My name is Miguel and I've created this site that fetches advice from an API.</em></p>
<p>API - <a href="https://api.adviceslip.com">Advice Slip</a></p>
</div>
</div>
<div class="footer-container">
<div class="footer-links">© 2022 Sophia</div>
<div class="footer-links"><a href="https://github.com/mig-uel/Sophia">GitHub</a></div>
</div>
</body>
</html>