generated from usf-cs360-spring2020/template-bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
106 lines (80 loc) · 3.8 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
<!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/lux/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>
</head>
<body>
<div id="navigation">
</div>
<script>
$(function(){
$("#navigation").load("navbar.html");
});
</script>
<section class="section">
<div class="container">
<!-- Begin page content -->
<div class="content">
<h2 id="about">About</h2>
<h4> Why I chose this data </h4>
<p>
The reason I chose this data is that before the lockdown, I ended up spending a lot of my money going out and about and exploring all the different places to eat food in the city, and would often like visiting and trying new restaurants. I wanted to see the health score of a lot of these places I like visiting, especially with the sanitary concerns that have been raised with COVID19 and I wanted to also compare and see if the health score was accurate about the condition of the atmosphere and the food that was provided. I will also correlate these results with the yelp data, and see if any new trends can be drawn.
</p>
<!-- Profile box -->
<!-- https://bulma.io/documentation/layout/media-object/ -->
<article class="media">
<!-- TODO: Replace with profile photo -->
<figure class="media-left">
<p class="image is-128x128"><img class="is-rounded" src="profile.jpg"></p>
</figure>
<div class="media-content">
<div class="content">
<!-- TODO: Replace with contact information -->
<p>
<strong>Aditya Dixit</strong><br/>
Computer Science and Economics Major, <a href="https://www.usfca.edu/">University of San Francisco</a><br/>
<em>Expected Graduation: 2021</em><br/>
<i class="fas fa-envelope"></i> <a href="mailto:[email protected]">[email protected]</a>
</p>
<!-- TODO: Replace with brief biography -->
<p>
I am currently a Junior at the University of San Francisco majoring in Computer Science and Economics. I am a New Zelaand citizen but I am from India and I love to travel and explore new places. My favorite course was Software Development.
</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">SVG</span>
</div>
</div>
</div>
</article>
<!-- End profile box -->
</div>
<!-- End page content -->
</div>
</section>
<div id="footer">
</div>
<script>
$(function(){
$("#footer").load("footer.html");
});
</script>
<!-- End mobile menu responsiveness -->
</body>
</html>