-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (100 loc) · 3.56 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
<html lang="en">
<link href="https://fonts.googleapis.com/css?family=Mogra" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Tauri" rel="stylesheet" type="text/css">
<!--<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"/>-->
<style>
.google-text {
color: white;
font-family: Tauri;
font-size: 120%;
}
</style>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Michelle's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="http://placeimg.com/400/400/tech/sepia" rel="stylesheet"></head>
<body>
<div class="main-nav">
<ul class="nav">
<li id="date"></li>
<li><a href="#">Home</a></li>
<li><a href="quote.html" target="_blank">Random Quote Generator</a></li>
<li><a href="https://docs.google.com/document/d/1yji5zRobfJiM2E7V3Fx3G0-APg4bh7BwO40oPEXuRnk/edit?usp=sharing" target="_blank">Resume</a></li>
<!-- <li><a href="mailto:[email protected]?subject=ProfileView">Contact</a></li> -->
</ul>
</div>
<header>
<img src="IMG_7700.jpg" alt="Picture of Michelle" class="profile-image">
<h1 class="tag name">Michelle Pierce</h1>
<h1 class="tag name">Software Engineer</h1>
<h2 class="google-text"><em>“I have stood on a mountain of no’s for one yes.” - B. Smith</em></h2>
</header>
<div>
<div class="card">
<h3 class="skills">Education:</h3>
<p class="skills">Northwestern State University<br>
Bachelor of Science<br>
Computer Information Systems<br>
Application Development Concentration<br>
</p>
</div>
<div class="card">
<h3>I am proficient in the following technologies:</h3>
<ul class="skills">
<li>JavaScript</li>
<li>C#</li>
<li>CSS</li>
<li>HTML</li>
<li>React</li>
<li>Bootstrap</li>
<li>SQL</li>
</ul>
</div>
<div class="card">
<h3>I have also used:</h3>
<ul class="skills">
<li>PHP</li>
<li>Java</li>
<li>ASP.NET</li>
</ul>
<h3>Development Tools:</h3>
<ul>
<li>Visual Studio</li>
<li>Git</li>
<li>Azure</li>
<li>Object Oriented Programming</li>
<li>Systems Analysis</li>
<li>Agile Software Development</li>
</ul>
</div>
<div>
<h3>Certifications:</h3>
<ul class="skills">
<li>MOS Access</li>
<li>MOS Excel</li>
<li>PC Pro</li>
<li>Security Pro</li>
</ul>
</div>
</div>
</main>
<div id="crayon" class="entry">
<div></div>
</div>
<footer>
<ul>
<li><img src="owl.svg" alt="Simple owl picture"></li>
<li><a href="https://github.com/micatch22" target="_blank" class="github">Github</a></li>
</ul>
<p id="date"></p>
</footer>
<script>
let [month, date, year] = new Date().toLocaleDateString("en-US").split("/")
document.getElementById("date").innerHTML = `Today's Date: ${month}/${date}/${year}`;
</script>
</body>
</html>