-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
53 lines (53 loc) · 2.67 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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8" />
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<title>Laura's Website, About</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
</head>
<body>
<div>
<div>
<nav class="navbar navbar-toggleable-sm navbar-light bg-light">
<div class ='navbar-nav'>
<a class='navbar-brand'>Laura Pak</a>
<a class='nav-item nav-link' href='/'>Home</a>
<a class='nav-item nav-link active' href='/about'>About <span class='sr-only'>(current)</span></a>
<a class='nav-item nav-link' href='/contact'>Contact</a>
</div>
</nav>
</div>
<br />
<div class = "jumbotron">
<p>
This page is to give you a sense of who I try to
be. Enjoy!
</p>
<h4>Creating and Solving Problems</h4>
<p>
Nothing can ever be perfect! That's why it's always
possible to create another problem to solve. Whether
it's memory usage, user experience, or computing
efficiency, everything can be improved on! When I
think I'm done with a project but I have a little time
left to work on it, I create another problem to solve.
This helps me make the best I can make.
</p>
<h4>Effort with Efficiency</h4>
<p>
"Work smart, not hard" => "Work smart and hard."
</p>
<h4>Contributing to Community</h4>
<p>
It takes a village to be a village! I believe that
in order to live your own best life, you have to help
the people around you live their best lives as well.
</p>
</div>
</div>
</body>
</html>