-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
75 lines (71 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Mike Yamato's Portfolio | Contact</title>
<link rel="icon" href="assets/images/favicon.ico" type="image/ico" />
<meta charset="utf-8">
<meta name="description" content="Background in account management, paid media, natural search (SEO), & full-stack development. Always just a phone call away +1 (747) 215-7826.">
<!-- Linking Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Linking CSS -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Linking jQuery -->
<!--<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>-->
<!-- Linking Google Fonts -->
<!--<link href='https://fonts.googleapis.com/css?family=Montserrat|Roboto+Slab|Yellowtail' rel='stylesheet' type='text/css'>-->
</head>
<body style="background-image: url(assets/images/Background/sayagata-400px.png)">
<div class="logo">
<a href="index.html" target="_top">
<img src="assets/images/my_logo.png" alt="mike yamato logo">
</a>
</div>
<div class="head">
<ul>
<li><a href="contact.html" target="_top">Contact</a></li>
<li><a href="portfolio.html" target="_top">Portfolio</a></li>
<li><a href="index.html" target="_top">About</a></li>
</ul>
</div>
<section class="about">
<h1>Contact Me</h1>
<hr>
<form>
<div id="name">
Name:<br>
<input type="text" name="name" maxlength="50" placeholder="50 characters maximum"><br>
</div>
<div id="email">
Email:<br>
<input type="email" name="email" maxlength="50" placeholder="50 characters maximum"><br>
</div>
<div id="phone">
Phone number:<br>
<input type="tel" name="phone" maxlength="20" placeholder="Numbers only"><br>
</div>
<div id="contact">
Preferred contact method:<br>
<select name="contact method">
<option value="email">E-mail</option>
<option value="phone">Phone</option>
</select><br>
</div>
<div id="resize">
Message:<br>
<textarea rows="5" cols="58" name="message" maxlength="300" placeholder="300 characters maximum"></textarea><br>
</div>
<button type="button" onclick="alert('Information received.')">Submit</button>
<button type="reset" value="Reset">Reset</button>
</form>
</section>
<section class="connect">
<h4>Connect With Me</h4>
<hr>
<a href="https://github.com/mikeyamato" target="_blank"><img class="icon" src="assets/images/Github_Color.svg" alt="Github"></a>
<a href="https://www.linkedin.com/in/mikeyamato/" target="_blank"><img class="icon" src="assets/images/LinkedIN_Color.svg" alt="LinkedIn"></a>
<a href="skype:burbank_mike?userinfo" target="_blank" ><img class="icon" src="assets/images/Skype_Color.svg" alt="Skype"></a>
<a href="https://www.facebook.com/mike.yamato" target="_blank" ><img class="icon" src="assets/images/Facebook_Color.svg" alt="Facebook"></a>
</section>
<footer class="footer">© Copyright 2017 Mike Yamato</footer>
</body>
</html>