-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
177 lines (161 loc) · 5.09 KB
/
contact.html
File metadata and controls
177 lines (161 loc) · 5.09 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
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
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ep Developer</title>
<meta charset="utf-8" />
<!-- stylesheets -->
<link rel="stylesheet" href="css/bulma.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
</head>
<body>
<!-- navigation -->
<div class="navigation">
<nav class="nav has-shadow">
<div class="container">
<!-- nav site title -->
<div class="nav-left">
<a class="nav-item">
<h3 class="title is-3" style="color: white;">ERIC PAUL DEVELOPER</h3>
</a>
</div>
<!-- end of site title -->
<!-- this "nav-toggle" hamburger menu is only visible on mobile -->
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
</span>
<!-- end of toggle -->
<!-- this "nav-menu" is hidden on mobile -->
<div class="nav-right nav-menu">
<a class="nav-item is-tab" href="index.html">
Home
</a>
<a class="nav-item is-tab" href="post.html">
Blog
</a>
<a class="nav-item is-tab" href="about.html">
About
</a>
<a class="nav-item is-tab is-active" href="contact.html">
Contact
</a>
<a class="nav-item" href="https://github.com/epaulf">
<span class="icon">
<i class="fa fa-github"></i>
</span>
</a>
</div>
<!-- end of nav -->
</div>
</nav>
</div>
<!-- end navigation -->
<!-- page content -->
<div class="main-content">
<div class="container">
<!-- start of contact -->
<div class="columns is-multiline is-centered">
<!-- start of contact -->
<div class="column is-7">
<div class="card">
<!-- contact header -->
<div class="card-content-header has-text-centered">
<h4 class="title is-4">Contact</h4>
</div>
<!-- end of contact header -->
<!-- contact content -->
<div class="card-content">
<div class="content">
<div class="card-inner-wrapper">
<div class="card-content-text">
<!-- contact text -->
<p>You can contact me for any questions or business through my social networks or directly to my personal email.</p>
<!-- end contact text -->
<!-- form begin -->
<div class="card-content-form">
<form method="POST" action="mailto:ericpaulflorese@gmail.com?subject=Paulweb contact" enctype="text/plain">
<div class="field">
<label class="label">Name</label>
<p class="control">
<input class="input is-large" name="Name" id="nameid" type="text" placeholder="Name" required>
</p>
</div>
<div class="field">
<label class="label">Email</label>
<p class="control">
<input class="input is-large" name="email_address" id="emailid" type="email" placeholder="Email" value="" required>
</p>
</div>
<div class="field">
<label class="label">Message</label>
<p class="control">
<textarea class="textarea is-large" name="comments" id="messid" placeholder="Message" required></textarea>
</p>
</div>
<div class="field is-grouped">
<p class="control">
<button class="button is-medium is-button-grey" type="submit">Send</button>
</p>
<p class="control">
<button class="button is-medium is-button-grey" type="reset">Clear</button>
</p>
</div>
</form>
</div>
<!-- form end -->
</div>
<!-- contact footer -->
<div class="card-content-footer-small">
<div class="nav-center">
<a class="nav-item" href="https://github.com/epaulf">
<span class="icon">
<i class="fa fa-github"></i>
</span>
</a>
<a class="nav-item" href="https://twitter.com/Epauldev">
<span class="icon">
<i class="fa fa-twitter"></i>
</span>
</a>
<a class="nav-item" href="https://www.linkedin.com/in/eric-paul-flores-espinoza-624603143/">
<span class="icon">
<i class="fa fa-linkedin"></i>
</span>
</a>
</div>
</div>
<!-- end of contact footer -->
</div>
</div>
</div>
</div>
</div>
<!-- end of contact column -->
</div>
<!-- end of contact columns -->
</div>
</div>
<!-- end of page content -->
<!-- footer: will stick to the bottom -->
<div class="footer footer-top-shadow">
<div class="container has-text-centered">
<span class="icon">
<i class="fa fa-github"></i>
</span>
</div>
</div>
<!-- end of footer -->
<script>
/* function Enviar() {
var name = document.getElementById("nameid");
var email = document.getElementById("emailid");
var message = document.getElementById("messid");
}
*/
</script>
</body>
</html>