-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
119 lines (104 loc) · 4.99 KB
/
about.html
File metadata and controls
119 lines (104 loc) · 4.99 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
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
115
116
117
118
119
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Samantha Lisk</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header>
<!-- Heading with my name -->
<section class="jumbotron jumbotron-fluid pb-3">
<section class="container">
<h1 class="display-4">Samantha Lisk, M.S.</h1>
</section>
</section>
<!-- Nav menu, including dropdown -->
<nav class="navbar navbar-expand-lg navbar-light navbar-custom justify-content-center">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<section class="collapse navbar-collapse justify-content-center ml-auto text-center" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link text-white" href="https://smlisk0630.github.io">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="https://smlisk0630.github.io/about">About</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white" href="https://smlisk0630.github.io/work" id="navbarDropdown"
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Work</a>
<section class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item"
href="https://www.linkedin.com/pulse/from-ad-hoc-automation-salesforce-case-management-solo-lisk-m-s-/">From
Ad Hoc to Automation</a>
<a class="dropdown-item"
href="https://smlisk0630.github.io/from-process-to-flow-series">From Process to Flow
Series</a>
<a class="dropdown-item"
href="https://vevents0.wpengine.com/lessons/3-principles-of-change-management-for-the-accidental-admin-samantha-lisk-salesforce-certified-administrator-the-fedcap-group/">Principles
of Change Management</a>
</section>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="https://github.com/smlisk0630" target="_blank">Github</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="https://www.linkedin.com/in/samanthalisk/" target="_blank">LinkedIn</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="https://trailblazer.me/id/slisk"
target="_blank">Trailhead</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="https://smlisk0630.github.io/portfolio">Portfolio</a>
</li>
</ul>
</section>
</nav>
</header>
<!-- Heading with page title -->
<section class="jumbotron jumbotron-fluid pb-3">
<section class="container-custom p-3">
<h2 class="display-5">
About
</h2>
</section>
</section>
<section class="container mt-4 mx-auto">
<article>
<p>
Samantha Lisk is a Salesforce Certified Administrator, Platform App Builder, and Advanced Administrator. She is
an aspiring developer and would love to pet your dog. Previously, she worked as a content writer and a
Spanish>English translator. She holds a Master of Science in Translation from New York University and a Bachelor
of Arts in English from Campbell University.
</p>
<p>
Samantha is passionate about social justice, especially anti-racism, poverty, and economic development.
</p>
</article>
</section>
<!-- JQuery for Bootstrap -->
<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>
<!-- Footer with copyright info -->
<footer>
<section class="jumbotron jumbotron-fluid pb-5">
<section class="container">
© Samantha Lisk 2020
</section>
</section>
</footer>
</html>