-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
56 lines (51 loc) · 2.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css" />
<link rel="stylesheet" href="styles.css" />
<script src='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/js/all.min.js'></script>
</head>
<body>
<section class="hero is-dark is-fullheight">
<header class="navbar">
<div class="container">
<div id="navbarMenuHeroC" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item" id="homepage" href="index.html">
Home
</a>
<a class="navbar-item is-active" id="aboutpage" href="about.html">
About
</a>
</div>
</div>
</div>
</header>
<div class="container">
<div class="content has-text-centered">
<h1 class="title has-text-weight-normal">What is Simpler?</h1>
<h5 class="subtitle has-text-grey has-text-weight-normal">A way to breakdown tasks to achieve efficiency</h5>
<div class="columns">
<div class="column has-text-centered is-size-4">
<p>
All too often, we make mental notes of tasks that need to be accomplished
and we end up not completing them. A task needs to be broken down
into smaller steps so we are able to have steps that are clearly laid out
that can help us achieve our goals. Simpler allows you to break a task down
so you can easily visualize what needs to be done step-by-step.
</p>
<p>
Example: "Make a website"
This is too broad and doesn't define anything or have any real steps.
</p>
<p>
Break down the task into simpler steps that helps you finish the goal.
</p>
</div>
</div>
</div>
</div>
</section>
</body>