-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
173 lines (130 loc) · 5.68 KB
/
contact.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<head>
<title>
Jeffrey Chen | Projects
</title>
<link rel="stylesheet" href="css/jquery.sidr.green.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/contact.css">
<link href="lightbox/src/css/lightbox.css" type="tex/css" rel="stylesheet">
<!-- Include jQuery -->
<script src="js/jquery-1.11.3.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<a id="simple-menu" href="#sidr">
<img id="dog" src="img/menu.png"/>
</a>
<div class="content">
<div class="row" >
<div class="col-md-12">
<div style="width:100%; color:white; font-size: 3em;
border-radius:5px;font-family:Manifesto; background-color:#43A047">
<div style="margin-left:1%">
Contact
</div>
</div>
</div>
</div>
<div class="row" style="margin-top:1%;">
<div class="col-md-12">
<a href="mailto:[email protected]">
<div class="wrapper2" style="border-radius:5px">
<div class="transparency"></div>
<div class="project">
<div style="font-size: 6em;font-family:Manifesto; display:table;float:right;height:100%;width:60%">
<div style="display:table-cell; text-align:left; vertical-align:middle;">
<b>Email</b>
</div>
</div>
<div style="float:right;display:table;height:100%;min-width:10%;position:relative;overflow:hidden">
<img src="img/contact_email.svg" style="height:40%; width:100%"/>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="row" style="margin-top:1%;">
<div class="col-md-12">
<a target="blank" href="https://www.linkedin.com/in/jycprogrammer">
<div class="wrapper2" style="border-radius:5px">
<div class="transparency"></div>
<div class="project">
<div style="font-size: 6em;font-family:Manifesto; display:table;float:right;height:100%;min-width:60%">
<div style="display:table-cell; text-align:left; vertical-align:middle;">
<b>LinkedIn</b>
</div>
</div>
<div style="float:right;display:table;height:100%;min-width:10%;position:relative;overflow:hidden">
<img src="img/contact_linkedin.svg" style="height:40%; width:100%"/>
</div>
</div>
</div>
</a>
</div>
</div>
</div> <!-- content -->
<div id="sidr">
<!-- Your content -->
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">Background</a></li>
<li ><a href="projects.html">Projects</a></li>
<li><a href="interests.html">Interests</a></li>
<li class="active"><a href="#">Contact</a></li>
<li><a target="blank" href="download/Jeffrey Chen Resume.pdf">Resume</a></li>
</ul>
</div>
<script>
$(document).ready(function() {
$('#simple-menu').sidr({displace:true});
$.sidr("close");
});
</script>
<!-- Include the Sidr JS -->
<script src="js/jquery.sidr.min.js"></script>
<!-- JavaScript jQuery code from Bootply.com editor -->
<script type='text/javascript'>
$(document).ready(function() {
if(window.location.href.indexOf('#ez-Modal') != -1) {
$('#ez-Modal').modal('show');
}
if(window.location.href.indexOf('#inv-Modal') != -1) {
$('#inv-Modal').modal('show');
}
if(window.location.href.indexOf('#hmu-Modal') != -1) {
$('#hmu-Modal').modal('show');
}
if(window.location.href.indexOf('#myModal') != -1) {
$('#myModal').modal('show');
}
$('.modal').on('hidden.bs.modal', function( event ) {
$(this).removeClass( 'fv-modal-stack' );
$('body').data( 'fv_open_modals', $('body').data( 'fv_open_modals' ) - 1 );
});
$( '.modal' ).on( 'shown.bs.modal', function ( event ) {
// keep track of the number of open modals
if ( typeof( $('body').data( 'fv_open_modals' ) ) == 'undefined' )
{
$('body').data( 'fv_open_modals', 0 );
}
// if the z-index of this modal has been set, ignore.
if ( $(this).hasClass( 'fv-modal-stack' ) )
{
return;
}
$(this).addClass( 'fv-modal-stack' );
$('body').data( 'fv_open_modals', $('body').data( 'fv_open_modals' ) + 1 );
$(this).css('z-index', 1040 + (10 * $('body').data( 'fv_open_modals' )));
$( '.modal-backdrop' ).not( '.fv-modal-stack' )
.css( 'z-index', 1039 + (10 * $('body').data( 'fv_open_modals' )));
$( '.modal-backdrop' ).not( 'fv-modal-stack' )
.addClass( 'fv-modal-stack' );
});
});
</script>
<script src="lightbox/src/js/lightbox.js"></script>
</body>
</html>