-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
109 lines (100 loc) · 3.75 KB
/
about.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
<!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 | About</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 href="services.html">Services</a></li>
<li><a class="current" 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>About Us</h1>
<hr>
<p>
This website is a portfolio
demonstrating my skills on both HTML5/CSS and Javascript.
</p>
<hr>
<h2>Portfolio for Html5/CSS</h2>
<p>
My portfolio for HTML5/CSS is this very website. It is both
responsive and in the future will have server side capablities.
</p>
<p>
I started learning HTML5 on June 13th. This website was
completed on Junes 27th. Two weeks after
I first started learning HTML5/CSS and I wrote this website from scratch.
</p>
<hr>
<h2>Portfolio for C++</h2>
<p>I have completed 200+ exercises in C++, all from the book programing principles
and practice using C++;
</p>
<a href="https://pdfs.semanticscholar.org/d1f7/3d7c073c8c5547082001cf5c6db156ac479c.pdf">
Programing Principles and Pratice Using C++</a>
<p>I also have some projects posted on github</p>
<a href="https://github.com/cbmmd42">My Github Profile</a>
<hr>
<h2>Portfolio for Javascript</h2>
<p>
I will be hosting web applications in the Apps section as my portfolio
develops. Check my github profile for more.
</p>
</div>
</section>
<footer>
<p>MJ Dev © 2019<p>
<p>Phone: 951-415-0999</p>
<p>Email: [email protected]</p>
</footer>
</body>
</html>