-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
117 lines (86 loc) · 3.55 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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Contact | Margarita Tagaban</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
<body>
<div id="wrapper"> <!-- This is to put everything inside the grid -->
<!-- LOGO AND NAV BAR -->
<div class="row">
<div class="col-md-12">
<header id="masthead">
<div class="container">
<a href="index.html" id="logo">Margarita Tagaban</a>
<!-- Image and text -->
<nav class="navbar navbar-light bg-faded">
<a class="navbar-brand" href="index.html">About</a>
<a class="navbar-brand" href="portfolio.html">Portfolio</a>
<a class="navbar-brand" href="contact.html">Contact</a>
<!-- Bootstrap -->
</a>
</nav>
</header>
</div>
</div>
<!-- FORM NOTES -->
<div class="row">
<div class="col-md-8">
<div id="main-container" class="container">
<section class="main-section">
<h1>Contact</h1>
<form id="contact-form">
<ul>
<li>
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="John Smith" required="required">
</li>
<li>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="example@gmail.com" required="required">
</li>
<li>
<label for="message">Message</label>
<textarea id="message" name="message" required="required"></textarea>
</li>
</ul>
<input type="submit">
</form>
</section>
</div>
</div>
<!-- SIDEBAR NOTES -->
<div class="col-md-4">
<section class="sidebar">
<div id="connect">
<h3> Let's Connect! </h3>
<a href= "https://github.com/taggie05" target="_blank">
<img src="assets/images/Octocat/Octocat.png"class="social" alt="GitHub" /></a>
<a href=href= "https://www.linkedin.com/in/margarita-tagaban/" target="_blank">
<img src="assets/images/linkedin-logo.png" class="social" alt="LinkedIn" /></a>
<a href= "https://stackoverflow.com/users/8430607/margie-tagaban" target="_blank">
<img src="assets/images/su-icon.png" class="social" alt="Stack Overflow" /></a>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-md-12">
<footer>
<div class="container">
Copyright © 2017 Margarita Tagaban
</div>
</footer>
</div>
</div>
</body>
</div>
</html>