generated from usf-cs360-spring2020/template-bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
102 lines (79 loc) · 4.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About</title>
<!-- Load Bulma from CDN (consider saving it to repository instead) -->
<!-- https://bulma.io/ -->
<link rel="stylesheet" href="https://jenil.github.io/bulmaswatch/nuclear/bulmaswatch.min.css">
<!-- Load Font Awesome 5 (free) icons -->
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script>
$(function(){
$("#navigation").load("navbar.html");
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<div id="navigation"></div>
<section class="section">
<div class="container">
<!-- Begin page content -->
<div class="content">
<h2>Why I chose this dataset ?</h2>
<p>
Since I am graduating this May, I have been now looking for housing in SF but much like people know, it has been a vary hard task to find housing that
can fit my current income range or find a place that decent to stay and have enough space. As starting price for a one room aparetment are starting from 1,000+
which is insane. So I was intreasted in learning about the truth of SF evictions as I saw many documentary of how SF residents are being pushed out from their homes since the
scale pricing of housing went up. That I wanted to see if affordability is the real reason for eviction or if something else is the reason.
<h2 id="about">About</h2>
<!-- Profile box -->
<!-- https://bulma.io/documentation/layout/media-object/ -->
<!-- Profile box -->
<!-- https://bulma.io/documentation/layout/media-object/ -->
<article class="media">
<figure class="media-left">
<p class="image is-128x128"><img class="is-rounded" src="ale.png"></p>
</figure>
<div class="media-content">
<div class="content">
<!-- TODO: Replace with contact information -->
<p>
<strong>Alejandro Garcia</strong><br/>
CS Major, <a href="https://www.usfca.edu/">University of San Francisco</a><br/>
<em>Expected Graduation: 2020</em><br/>
<i class="fas fa-envelope"></i> <a href="mailto:argarcia6@dons.usfca.edu">argarcia6@dons.usfca.edu</a>
</p>
<!-- TODO: Replace with brief biography -->
<p>
I am currently a Undergraduate CS student in my last semester in Unversity of San Francisco. Some fun facts about myself is that I was born in Miami, Flordia and my hobbies are photography/film making and gaming. Come check out my <a href="https://www.linkedin.com/in/alegar917/">linkedin</a>, and <a href="https://github.com/Alegar917">Github Pages</a>.
</p>
<!-- TODO: Replace or remove tags -->
<!-- https://bulma.io/documentation/elements/tag/ -->
<div class="heading">Skills</div>
<div class="tags">
<span class="tag">Python</span>
<span class="tag">C</span>
<span class="tag">Java</span>
<span class="tag">JavaScript</span>
<span class="tag">HTML</span>
<span class="tag">CSS</span>
<span class="tag">C#</span>
</div>
</div>
</div>
</article>
<!-- End profile box -->
<!-- Profile box -->
<!-- https://bulma.io/documentation/layout/media-object/ -->
</div>
<!-- End page content -->
</div>
</section>
<div id="footer"></div>
<!-- End mobile menu responsiveness -->
</body>
</html>