-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
136 lines (105 loc) · 5.58 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
<!DOCTYPE html>
<html lang='en'>
<head>
<!-- Basic Page Needs -->
<meta http-equiv="content-type" content="text/html"; charset="utf-8"/>
<meta name="author" content="Mai Dang">
<meta name="keyword" content="Mai Dang">
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- Title and Meta Description -->
<title> Contact </title>
<meta name="description" content="a developer, creator, coffee addict">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
<!-- favicon -->
<link rel="shortcut icon" href="assets/initials.png"/>
<!-- <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/> -->
<link rel="stylesheet" type="text/css" href="./css/about.css"/>
<link rel="stylesheet" type="text/css" href="./css/main.css"/>
<link rel="stylesheet" type="text/css" href="./css/contact.css"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Karla" rel="stylesheet">
<!-- Favicon -->
</head>
<body onLoad="typeWriter()">
<div class="frame">
<div class="frame-body">
<nav role="navigation">
<div id="menuToggle">
<!--
A fake / hidden checkbox is used as click reciever,
so you can use the :checked selector on it.
-->
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<ul id="menu">
<a href="https://mai-nhien.github.io" id="menuLink"><li>Home</li></a>
<a href="https://mai-nhien.github.io./about.html" id="menuLink"><li>About</li></a>
<a href="https://mai-nhien.github.io./projects.html" id="menuLink"><li>Projects</li></a>
<a href="https://mai-nhien.github.io./contact.html" id="menuLink"><li>Contact</li></a>
</ul>
</div>
</nav>
<p class="aboutTitle"> contact </p>
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-">
<p >
<span id="heading">hey, thanks for visiting! let's stay in touch</span>
</p>
</div>
</div>
<div class="row justify-content-center" style="padding-top: 10px">
<div class="col-">
<p >
<span id="field">email: </span><a href="mailto:[email protected]" id="content"> [email protected]</a>
</p>
</div>
</div>
<div class="row justify-content-center" style="padding-top: 10px">
<div class="col-">
<p >
<span id="field">socials: </span>
<a class="socialLink" href="https://www.linkedin.com/in/mai-nhien-dang-0b82a4133/" target="_blank"><span class="fa fa-linkedin fa-2x"></span></a><b></b>
<a class="socialLink" href="https://www.facebook.com/main.dang.35" target="_blank"><span class="fa fa-facebook fa-2x"></span></a><b></b>
<a class="socialLink" href="https://www.instagram.com/mai.dang3/" target="_blank"><span class="fa fa-instagram fa-2x"></span></a><b></b>
<a class="socialLink" href="https://github.com/Mai-Nhien" target="_blank"><span class="fa fa-github fa-2x"></span></a><b></b>
</p>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- JS -->
<!-- Typed.js -->
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<!-- Bootstrap JS -->
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous">
</script>
<script src="./js/squares.js"></script>
<!-- Enable Bootstrap tooltips -->
<script>
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script>
</html>