-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject1.html
53 lines (48 loc) · 2.13 KB
/
project1.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-US">
<head>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="tabs">
<ul class="tabs-list">
<li><a href="home.html"> Previous </a></li>
</ul>
</div>
<div id = "container">
<div class="section">
<table>
<tr>
<h2 class="highlight-blue">
Pocket PubMed
</h2>
</tr>
<tr></tr>
<td>
<p>
Built using Android Studio, Java. About 1200 lines of code.
</p>
<p>
Pocket PubMed started as a final project for a computer science course I was
taking to boost my knowledge outside of what I learned in school. It quickly grew to become more than that.
Even after turning it in, I continued to work on it and add features -- it's still in progress!
</p>
<p>
The central idea behind Pocket PubMed is to take NIH's medical and research paper database, PubMed,
and create a mobile version that could be easily accessible from a user's phone.
It includes a search bar, which uses JSON requests to fetch information from PubMed's open database
and creates a scrolling infinite list of formatted articles, a history tab that displays
previous searches made (sorted by timestamp), and a currently-in-progress favorites bar
that will allow users to save certain articles for later use (say, if you were a college student looking for academic resources.)
</p>
</td>
<td>
<img src = "images/pubmedImg.jpg"></img>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>