-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.html
86 lines (74 loc) · 4.71 KB
/
Home.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/docs/4.0/assets/img/favicons/favicon.ico">
<title>Ralph Sanders</title>
<!--
<link rel="canonical" href="https://getbootstrap.com/docs/4.0/examples/jumbotron/">
-->
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link href="jumbotron.css" rel="stylesheet">
<script src="components/header.js" type="text/javascript" defer></script>
</head>
<body>
<header-component></header-component>
<main role="main">
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1 class="display-2">Ralph Sanders</h1>
<p>I am a graduating Computer Science student seeking opportunities in software development and cybersecurity</p>
<p><a class="btn btn-light btn-sm" href="https://www.linkedin.com/in/ralph-sanders-3b1704177/" role="button">LinkedIn profile »</a></p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="conatiner mb-5">
<div class="row">
<div class="col-md-4">
<h2>Caesar Cipher</h2>
<p>Encrypt your messages with this caesar cipher application written in Java. Featuring both encrypting and decrypting functionality, input validation, and an option to run again. Use a unique shift value to encrypt/decrypt your chosen text.</p>
<p><a class="btn btn-secondary" href="https://github.com/rlsanders4/caesar-cipher" role="button">Source code »</a></p>
</div>
<div class="col-md-4">
<h2>Recipe Box App</h2>
<p>Coming soon! Being developed for release on the Google Play Store, this app will allow you to record all your favorite recipes in one convenient location.</p>
<p><a class="btn btn-secondary disabled" href="" role="button">Source code »</a></p>
</div>
<div class="col-md-4">
<h2>My Website</h2>
<p>This very site that you're on right now. Created using HTML, CSS, and JavaScript, I built this site to learn more about web development and to display my personal coding projects. Bootstrap 4 is used for additional formatting and styling.</p>
<p><a class="btn btn-secondary" href="https://github.com/rlsanders4/personal_website" role="button">Source code »</a></p>
</div>
</div>
<hr />
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-4 mb-2">
<img class="fit" src="profile_pic.jpg" alt="Ralph Sanders">
</div>
<div class="col-md-4 mb-2">
<h2>About me</h2>
<p>Originally from Raleigh, NC, I am studying Computer Science at The Ohio State University. My graduation date is set for May 2021, and I am excited to transition into the workforce. I am currently searching for positions in both software development and cybersecurity. During the school year, I work as an IT Support Student at the Office of Disabilities here on campus. In my spare time, I enjoy learning Arabic, playing the guitar, and cooking. I serve as a Cadet in the US Army Reserves.</p>
</div>
</div>
</div>
</div> <!-- /container -->
</main>
<footer class="container">
<p></p>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>