-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (105 loc) · 4.29 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
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<!-- import css stylesheet -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- Navigation Menu -->
<nav class="navigation">
<div id="title">Bryan Wilson Project</div>
<a href="#home">Home</a>
<a href="#news">News</a>
<a href="#contact">Contact</a>
</nav>
<!-- Main viewable content -->
<main>
<!-- Resume content styled with 3 column table -->
<div class="container">
<div class="item">
<h2>Skills</h2>
<hr>
<ul>
<li>Automation of Processes</li>
<li>macOS & Windows 10 Hardware and Software Troubleshooting</li>
<li>Solutions Architecting</li>
<li>Customer Service</li>
<li>Network Troubleshooting</li>
<li>Security Conscience</li>
<li>Results driven</li>
<li>Customer Experience</li>
</ul>
</div>
<div class="item">
<h2>Tools</h2>
<hr>
<ul>
<li>PowerShell</li>
<li>Bash</li>
<li>MDM</li>
<li>Visual Studio Code</li>
<li>Github</li>
<li>SSH</li>
<li>Microsoft Office Suite</li>
<li>iWork (Apple Productivity Suite)</li>
</ul>
</div>
<div class="item">
<h2>Experience</h2>
<hr>
<ul>
<li>Excellent Customer Service in challenging, high expectations environment</li>
<li>Mixed DoD Environment</li>
<li>AFS/Kerberos/Putty Stack configuration (supporting Web Developers)</li>
<li>Small/Medium Business legacy email system migration</li>
<li>Management of macOS servers</li>
<li>Centrify to implement macOS integration in Windows based environment</li>
</ul>
</div>
<div class="item">
<h2>Current interests</h2>
<hr>
<ul>
<li>SCCM</li>
<li>Javascript</li>
<li>Node.JS</li>
<li>DevOps</li>
<li>Automation</li>
</ul>
</div>
<!-- Profile Image -->
<a href="https://www.linkedin.com/in/bryan-wilson-info/" target="_blank">
<img class="item" src="public/images/profile 2.jpg" alt="Profile" width="400" height="400">
</a>
</div>
<!-- Contact form, using div class to contain both left side "text box", and form container. Helps with layout structure. -->
<div class="contact-container">
<!-- Text to display next to contact form. This could be expanded. -->
<!-- <div id="contact-text">
<a name="contact"></a>
<ul>
<li>Let's connect</li>
</ul>
</div> -->
<!-- Contact form, action shows error currently, as the php file referenced does not exist. -->
<!-- <div class="contact-form">
<form action="action_page.php">
<label for="email">Email address</label>
<input type="text" id="email" name="emailaddress" placeholder="Your email address...">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subjectline" placeholder="Subject line...">
<label for="message">Message</label>
<textarea id="message" name="messagearea" placeholder="Write something.."
style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div> -->
</div>
</main>
<footer>
<a href="http://www.linkedin.com/in/bryan-wilson-info">linkedin</a> |
<a href="https://github.com/bwilsoni">github</a>
<a id="name-footer" href="https://bwilson.tech">Bryan Wilson 2019</a>
</footer>
</body>
</html>