-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypage_bootstrap.html
91 lines (88 loc) · 3.27 KB
/
mypage_bootstrap.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<title>About Me</title>
</head>
<body>
<div class="container">
<h1>Gerrett Pape <small class="text-muted"> - Programmer </small></h1>
</div>
<div class="container">
<div class="card bg-light">
<div class="card-body">
I was born in Colorado, I like to cook and I love the snow. I am studying computer science because
I have always had a passion for programming and wanted to explore it more.
</div>
</div>
</div>
<h2>My Professional Profile </h2>
<a class="btn btn-light" href="https://github.com/CheesyBoy123" role="button"> Github </a>
<div>
<img src="https://static.tvtropes.org/pmwiki/pub/images/AverageMan1.jpg" class="rounded-circle" alt="Cleary a picture of me" width=500px height=500px> </img>
</div>
<h3> My Favorite Projects </h3>
<div>
<table class="table">
<tr>
<th> Project Name </th>
<th> Technologies Used </th>
</tr>
<tr>
<td> Truck Route Calculator</td>
<td> Java </td>
</tr>
<tr>
<td> Recip-EZ </td>
<td> PHP and HTML</td>
</tr>
<tr>
<td> Server Plugins </td>
<td> Java </td>
</tr>
</table>
</div>
<div class="row">
<div class="col">
<button type="button" class="btn btn-light" data-toggle="collapse" data-target="#countries"> Countries Travelled</button>
<div id="countries" class="collapse">
<ol>
<li> Mexico </li>
<li> England </li>
</ol>
</div>
</div>
<div class="col">
<button type="button" class="btn btn-light" data-toggle="collapse" data-target="#interests"> My Interests</button>
<div id="interests" class="collapse">
<ul>
<li> Coding </li>
<li> Gaming </li>
<li> Biking </li>
</ul>
</div>
</div>
</div>
<button type="button" class="btn btn-info" data-toggle="modal" data-target="#myModal"> Click Me! </button>
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Thats All Folks!</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<p>( •_•)>⌐■-■</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</body>
</html>