-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.html
More file actions
42 lines (42 loc) · 1.49 KB
/
apps.html
File metadata and controls
42 lines (42 loc) · 1.49 KB
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
<!DOCTYPE html>
<html>
<head>
<style>
body{
background-color: #85b8ff
}
</style>
<meta charset="utf-8">
<title> Apps </title>
</head>
<body>
<img src="my-banner.jpg">
<table>
<thead>
<tr>
<td> <a href="index.html">
<img src="home-button.png">
</a> </td>
<td> <a href="javascripts.html">
<img src="javascripts-button.png">
</a> </td>
<td> <a href="apps.html">
<img src="apps-button.png">
</a> </td>
<td> <a href="about_me.html">
<img src="about-me-button.png">
</a> </td>
<td> <a href="final_project.html">
<img src="final_project_btn.png">
</a> </td>
</tr>
</thead>
</table>
<h1> My Apps </>
<p> Here you will find Apps that I have written. </p>
<p style="font-size: 25px">
This is an application that can identify an image of a bear as either a grizzley bear, black bear, or teddy bear. <lb>
This application was built in Jupyter Notebooks and was taught through Fast.ai's free course "Practical Deep Learning for Coders."
</p>
</body>
</html>