-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (82 loc) · 3.43 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
<!DOCTYPE html>
<html>
<head>
<title>My WebSite</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="header">
<h1>Danny Garzon</h1><br><br><br>
<h3> Software / Computer Engineer</h3>
</div>
<div class="menu">
<a href="#">Home</a>
<!-- Trigger/Open The Modal -->
<button id="aboutMe">About Me</button>
<a href="gallery.html" target="">Image Gallery</a>
<a href="contact.html" target="">Contact Me</a>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close">Close</span>
<h2>About Me</h2>
</div>
<div class="modal-body">
<h2><p>I am a Computer systems and network administrator with many years of experience implementing and maintaining computer base systems and LAN/WAN networks. Proficiency in installing TCP/IP and security protocols, deploy of windows client-server operating systems and domain controllers. Expertise also includes Cisco switching and routing, Cisco voice and data communication as well as maintaining radio and electronic equipment and software packages. </p>
<p>I’ve always sought out opportunities and challenges that are meaningful to me. Although my professional path has taken many twists and turns — from touring and recording artist, to employee of the year at a non-profit, to dean's scholar at Devry, to small business owner and entrepreneur — I've never stopped engaging my passion to help others and solve problems.</p>
<p> a web developer, I enjoy using my obsessive attention to detail, my unequivocal love for making things, and my mission-driven work ethic to literally change the world. That's why I’m excited to make a big impact at a high growth company.</p></h2>
</div>
<div class="modal-footer">
<h3>email: [email protected] -- P: (516) 286-3255</h3>
</div>
</div>
</div>
<div class="row">
<div class="column">
<img src="pics/The-potential-impact.jpg" width="400" height="400" alt="" align="left"style="margin: 10px" >
<br>
<br>
<br>
<br>
</div>
<h2>Hello</h2>
<h2>I'm Danny</h2>
</div>
<div class="footer">
<h2><mark>Follow me @</mark></h2>
<ul>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
<a href="#" class="fa fa-youtube"></a>
<a href="#" class="fa fa-instagram"></a>
</ul>
</div>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the button that opens the modal
var aboutMe = document.getElementById("aboutMe");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
aboutMe.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
</body>
</html>