-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
119 lines (104 loc) · 4.1 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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" />
<title>
Anime Flowchart
</title>
<link rel="shortcut icon" type="image/jpg" href="src/images/favicon.png"/>
<link rel=stylesheet href="src/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="src/css/normalize/normalize.css" />
<link rel="stylesheet" type="text/css" href="src/css/style.css" />
</head>
<body>
<header>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container-fluid">
<button
class="navbar-toggler"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#navbarExample01"
aria-controls="navbarExample01"
aria-expanded="false"
aria-label="Toggle navigation"
>
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarExample01">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item active">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/tabiosg/">Documentation</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/tabiosg/">Creator</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navbar -->
<!-- Background image -->
<style>
/* Default height for small devices */
#intro-example {
height: 400px;
}
/* Height for devices larger than 992px */
@media (min-width: 992px) {
#intro-example {
height: 600px;
}
}
</style>
<div
id="intro-example"
class="p-5 text-center bg-image"
style="
background-image: url('https://images.unsplash.com/photo-1601850494422-3cf14624b0b3?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80');
height: 700px;
background-position:center;
"
>
<div class="mask" style="background-color: rgba(0, 0, 0, 0.6);">
<div class="d-flex justify-content-center align-items-center h-100">
<div class="text-white">
<h1 class="mb-3">Home</h1>
<h4 class="mb-3">Find your new favorite anime!</h4>
<a class="btn btn-outline-light btn-lg" href="index.html" role="button"
>Click here to find new anime</a
>
</div>
</div>
</div>
</div>
</header>
<div id="about-me-container" class="custom-container">
<p>I am Guthrie Tabios! I am currently studying at the University of Michigan.</p>
</div>
<div id="about-plan-container" class="custom-container">
<p>
This website was created for me to put all my knowledge of basic HTML, CSS, and javascript into practice!
I plan on making more simple projects in the future too.
</p>
</div>
<div id="about-anime-container" class="custom-container">
<p>Credits to wilsonchen02 for helping out.</p>
</div>
<script type="module" src="src/js/script.js"></script>
<script src="src/bootstrap/js/bootstrap.min.js"></script>
<!--
<script src="//code.jquery.com/jquery-3.6.0.min.js"></script>
<script>window.Jquery || document.write("<script src ='/js/jquery-3.6.0.min.js'><\/script>");</script>
-->
</body>
</html>