-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
68 lines (51 loc) · 1.78 KB
/
contact.html
File metadata and controls
68 lines (51 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Daniel Ryne Lucio</title>
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
</head>
<body>
<header>
<aside>Daniel Ryne Lucio</aside>
<div id="menu">
<a href="./index.html">About</a> | <a href="./portfolio.html">Portfolio</a> | <a href="./contact.html">Contact</a>
</div>
</header>
<section id="middlesection">
<div id="mainbox">
<div id="bodyarea">
<div id="header">
About Me
<div id="line"></div>
</div>
<form action="mailto:someone@example.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name" placeholder="Jane Smith"><br>
E-mail:<br>
<input type="text" name="mail" placeholder="email@gmail.com"><br>
Message<br>
<!-- this was the original code for the text area
<input id="messagewindow" type="text" name="message" textarea=><br><br>
-->
<textarea rows="25" cols="75"></textarea>
<br>
<input id="submitbutton" type="submit" value="Submit">
</form>
</div>
</div>
<div id="socialbox">
<div id="header">
Connect with Me
<div id="line"></div>
<a href="https://github.com/danielryne" target="_blank"><img src="./assets/images/github-48.png"></a>
<a href="https://www.linkedin.com/in/danielrynelucio/" target="_blank"><img src="./assets/images/linkedin-48.png"></a>
<a href="https://stackoverflow.com/users/8108976/daniel?tab=profile" target="_blank"><img src="./assets/images/stackoverflow-48.png"></a>
</div>
</div>
</section>
<footer>
© Copyright 2017 Daniel Ryne Lucio
</footer>
</body>
</html>