-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
132 lines (127 loc) · 4.54 KB
/
Copy pathabout.html
File metadata and controls
132 lines (127 loc) · 4.54 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title> Maribel: MLA Formatter </title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<link href="https://fonts.googleapis.com/css?family=Oleo+Script|Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:700,800&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="images/favicon.ico" />
<script type="text/javascript" src="scripts/script.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-148034811-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-148034811-1');
</script>
</head>
<body class="has-text-grey-dark">
<section class="hero">
<div class="container">
<div class="tile notification is-child" style="background-color: inherit">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<div class="navbar-item">
<div class="buttons">
<a class="button is-danger is-size-4 is-centered-mobile" id="titleLogo"
onclick="location.href='index.html'"><span> Maribel </span></a>
<span class="navSelect is-size-7-mobile" id="titleName"
style="margin-bottom: 0.5rem;">by Jacob Patel
</span>
</div>
</div>
<a role="button" class="navbar-burger burger is-pulled-right"
style="margin-top: auto; margin-bottom: auto;" aria-label="menu" aria-expanded="false"
data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu has-text-weight-bold" id="navbarBasicExample">
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a class="button is-light navSelect " onclick="location.href='index.html'">
Formatter </a>
</div>
</div>
<div class="navbar-item">
<div class="buttons">
<a class="button is-light navSelect"
onclick="location.href='https://owl.purdue.edu/owl/research_and_citation/mla_style/mla_formatting_and_style_guide/mla_general_format.html'">
MLA Guidelines </a>
</div>
</div>
<div class="navbar-item">
<div class="buttons">
<a class="button is-light navSelect is-nav-active"
onclick="location.href='about.html'"> About </a>
</div>
</div>
<div class="navbar-item">
<div class="buttons">
<a class="button is-light navSelect"
onclick="location.href='https://ko-fi.com/jseanpatel'"> Support </a>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
</section>
<section class="section" id="intro">
<div class="container">
<div class="tile notification is-child has-background-white-bis has-tile-padding">
<div class="columns">
<div class="column is-full has-text-centered">
<div class="content">
<h1 class="title is-4" style="font-weight: 700; color: #444;"> <span class="is-pink">
Maribel</span> was built for my mother, to help her in achieving her Master's
Degree. </h1>
<p class="subtitle has-text-weight-light is-3" style="color: #696969"> </p>
</div>
<div class="content">
<h1 class="title is-5 has-small-margin-top" style="font-weight: 400; color: #444"> <i>Thank
you Mom for always cheering on my creativity, and modeling a deep value for
education. I love you. </i></h1>
</div>
</div>
<div class="column is-half is-centered has-vertically-aligned-content">
<div class="buttons is-centered">
</div>
</div>
</div>
</div>
</div>
</section>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<footer class="footer" style="text-align: center;">
<div class="content">
<div class="container">
<p class="">
© Created by 2021
<a
class="has-text-weight-bold"
id="ladderdesigns"
href="https://ladderdesigns.co"
>
Ladder Designs</a>. All rights reserved.
</p>
</div>
</div>
</footer>
</body>
</html>