-
Notifications
You must be signed in to change notification settings - Fork 80
/
index.html
114 lines (104 loc) · 6.03 KB
/
index.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
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My Resume</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://kit.fontawesome.com/405ff12bc4.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<!-- Briefly study the bootstrap classes below and discuss with other learners what the classes are doing
and which ones are custom from our external stylesheet-->
<div class="container-sm mx-auto my-4 custom-resume">
<div class="row justify-content-evenly">
<div class="col-md-8 col-lg-9 d-flex flex-column px-4">
<div class="row custom-text-cont">
<div class="container-fluid col my-auto">
<h5 class="my-3 fs-4">
<span class="px-1">
<i class="fas fa-user fs-5 p-2"></i>
</span>
Career Profile
</h5>
<p>
<!-- Enter a mission statement here or your career goals or some
other kinda blurb -->
</p>
</div>
</div>
<div class="row custom-text-cont">
<div class="container-fluid col my-auto">
<h5 class="my-3 fs-4">
<span class="px-1">
<i class="far fa-building p-2"></i>
</span>
Experiences
</h5>
<p class="my-0 d-flex justify-content-between custom-title">
<!-- Enter a title for a job, project, or education etc.-->
<span class="px-1">
<!-- Enter relative dates (from / to)-->
</span>
</p>
<!-- Enter the location of your experience in the p tag below-->
<p class="mb-2 custom-city"> </p>
<p>
<!-- Enter a description of your latest job or work experience, or a project, or
education -->
</p>
</div>
</div>
</div>
<div class="col-md-4 col-lg-3 d-flex flex-column justify-content-center text-light py-4 px-3 custom-profile">
<div class="row container-fluid gx-1 py-2">
<div class="container-fluid col d-flex flex-column">
<!-- Change the source attribute below to link to your image you would like to show
This will require you to copy and paste a different image file from your file system
to /assets/images/somepicfilename and it should show up -->
<img src="./assets/images/File-removebg-preview.png" class="img-fluid flex-shrink-0" alt="profile">
<p class="flex-grow-1 m-2">
<!-- Enter your full name -->
<span>
Full-Stack Engineer
</span>
</p>
</div>
</div>
<div class="row container-fluid gx-1 py-2">
<div class="container-fluid col text-center">
<p class="d-flex m-1">
<span class="px-1"><i class="fas fa-mobile-alt fs-5"></i>
</span>
<a href="tel:555-555-5555">555-555-5555</a>
</p>
<p class="d-flex m-1">
<span class="px-1"><i class="far fa-envelope fs-5"></i>
</span>
<!-- Put your email below if you would like -->
<a href="mailto:[email protected]">[email protected]</a>
</p>
<p class="d-flex m-1">
<span class="px-1"><i class="fab fa-github"></i>
</span>
<!-- Replace githubid both loacations below if you would like -->
<a href="https://github.com/githubid">github.com/githubid</a>
</p>
<p class="d-flex m-1">
<span class="px-1"><i class="fab fa-linkedin"></i>
</span>
<!-- Replace the linked link with your Linked in if you would like -->
<a href="http://www.linkedin.com/in/jon-jackson-27230429">LinkedIn</a>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Add bootstrap JS CDN for later in case need it for any future components -->
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj" crossorigin="anonymous"></script> -->
</body>
</html>