-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
95 lines (85 loc) · 3.04 KB
/
services.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-153190887-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-153190887-1');
</script>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Portfoio website written and published by Michael G. Johnson a software engineer">
<meta name="keywords" content="michael g johnson, Michael G. Johnson,michael johnson, portfolio ,Software Engineer,Michael Johnson,Web Design,Portfolio,
Michael,Johnson,Software,website">
<meta name="author" content="Michael Johnson" />
<title>MJ | Services</title>
<link rel="stylesheet" href="./css/style.css"/>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Johnson</span> Web Design</h1>
</div>
</div>
</header>
<nav class="largescreen">
<ul>
<li><a href="index.html">Home</a></li>
<div class="dropdown1">
<li class="dropbtn1"><a href="games.html">Apps</a></li>
<div class="dropdown-content1">
<a href="https://www.michaelgjohnson.com/sortvisualizer/">Sort Function Visualizer</a>
<a href="https://www.michaelgjohnson.com/quizapp/">Quiz Application</a>
<!-- <a href="error.html">Monster Bash</a>
<a href="error.html">Temple run</a>
<a href="error.html">Tanks</a>
<a href="error.html">Stick Wars</a>-->
</div>
</div>
<li><a class="current" href="services.html">Services</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<div class="dropdown">
<button class="dropbtn">Menu</button>
<div class="dropdown-content">
<a href="index.html">Home</a>
<a href="games.html">Apps</a>
<a href="services.html">Services</a>
<a href="about.html">About</a>
</div>
</div>
</nav>
<section class="text">
<div class="container">
<h1>Services</h1>
<hr>
<p>
Experience includes but is not limited to these skillsets:
</p>
<p>Software Development</p>
<p>Test Driven Design</p>
<p>Google-Test/Google-Mock and other testing frameworks</p>
<p>C++</p>
<p>Java</p>
<p>Java-script</p>
<p>php</p>
<p>linux</p>
<p>databases</p>
<p>shell scripting</p>
<p>HTML/CSS</p>
<p>Open to all types of employment and interviews.</p>
</div>
</section>
<footer>
<p>MJDev © 2019<p>
<p>Phone: 951-415-0999</p>
<p>Email: [email protected]</p>
</footer>
</body>
</html>