-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
81 lines (76 loc) · 3.5 KB
/
contact.html
File metadata and controls
81 lines (76 loc) · 3.5 KB
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
<!DOCTYPE HTML>
<html>
<head>
<title>Kyle Tam - Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300,400,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/general.css">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" media="screen and (max-device-width: 500px)" href="css/mobile.css">
<link rel="icon" href="images/logo.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="javascript/scrolling.js" async></script>
</head>
<body>
<div class="banner">
<ul class="pull-left nav--left">
<div class="icon">
<a class ="icon" href="index.html">
Kyle Tam
</a>
</div>
</ul>
<ul class="pull-right nav--right">
<li><a href="index.html">Home</a>
<li><a href="design">Design</a>
<li><a href="manufacturing">Manufacturing</a>
<li><a href="projects">Projects</a>
<li><a href="hobbies.html">Hobbies</a>
<li><a href="gallery.html">Gallery</a>
<li><a href="contact.html" class="page">Contact</a>
</ul>
</div>
<div class="cover-photo">
<div class="box">
<div class="name">
Contact
</div>
</div>
</div>
<div class="col-md-12">
<div class="downArrow bounce">
<a href="#descriptions">▼</a>
</div>
</div>
<div class="descriptions" id="descriptions">
<div class="section col-md-12">
<div class="col-md-8 col-md-offset-2">
<h3 class="subteam-title text-left" id="questions">Got Questions?</h3>
<p class="content-text text-left">Contact me at <a href="mailto:kyle.m.tam@gmail.com">kyle.m.tam@gmail.com</a> or fill out the form below:</p>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfGgWyLl31q9bUaxxh2nMnalCwXrbZzaz5yhzuvQ1y2s5viSg/viewform?embedded=true" width="640" height="800" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
</div>
</div>
<div class="footer col-md-12">
<div class="copyright__container">
<a href="index.html">© 2023 Kyle Tam</a>
</div>
<div class="footer__container">
<a href="mailto:kyle.m.tam@gmail.com">
<img src="media/icon_mail.png">
</a>
</div>
<div class="footer__container">
<a href="https://www.linkedin.com/in/kyle-m-tam/">
<img src="media/icon_linkedin.png">
</a>
</div>
<div class="footer__container">
<a href="https://github.com/kylemtam">
<img src="media/icon_github.png">
</a>
</div>
</div>
</body>
</html>