-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
102 lines (97 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact NiwatoriDev</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<center>
<img
src="resources/images/estebans-profile-picture.png"
alt="esteban-s profile picture"
/>
<h1 class="estebanName" style="margin: 0">Esteban Munoz</h1>
<h4 class="niwatoriDevc"style="margin: 1px 0 0 0"> NiwatoriDev</h4>
</center>
<section class="headerMenu">
<hr size="3" noshade width="45%" />
<a href="about-me.html">About Me</a>
<a style="margin-left: 2%" href="index.html">Resume</a>
<a style="margin-left: 2%" href="skills.html">Skills</a>
<a style="margin-left: 2%" href="contact.html">Contact</a>
<a style="margin-left: 2%" href="test.html">Test</a>
<hr size="3" noshade width="45%" />
</section>
</header>
<section>
<center/>
<table cellspacing="50">
<tr>
<td>
<table>
<thead>
<h3>Information</h3>
</thead>
<tr>
<td><img src="resources/images/email logo.png" alt="email icon" /></td>
<td>[email protected]</td>
<td><img src="resources/images/phone logo.png" alt="phone icon" /></td>
<td>+52 222 390 0810</td>
</tr>
</table>
</td>
<td>
<table>
<thead>
<h3>Socials</h3>
</thead>
<tr>
<td><a target="=__blank" href="https://www.facebook.com/TeboMa/"> <img src="resources/images/fb logo.png" alt="facebook icon" </a></td>
<td><a target="=__blank" href="https://twitter.com/pollorostizado_"> <img src="resources/images/tw logo.png" alt="twitter icon" </a></td>
<td><a target="=__blank" href="https://www.linkedin.com/in/esteban-muñoz-053b7a1a0/"> <img src="resources/images/linkedin logo.png" alt="linkedin icon" </a></td>
</tr>
</table>
</td>
</table>
</center/>
</section>
<section>
<center>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<table>
<tr>
<td>
<label>Your Name:</label>
</td>
<td>
<input type="text" name="yourName" value="">
</td>
</tr>
<tr>
<td>
<label>Email</label>
</td>
<td> <input type="email" name="yourEmail" value=""> </td>
</tr>
<tr>
<td> <label> Phone Number</label> </td>
<td> <input type="tel" name="yourPhoneNo" value=""> </td>
</tr>
<tr>
<td> <label>Message</label> </td>
<td> <textarea name="yourMessage" rows="4" cols="22"></textarea> </td>
</tr>
</table>
<br>
<label>I have read Terms and Conditions</label>
<input type="checkbox" name="" value="">
<br>
<input type="submit" name="">
</form>
</center>
</section>
</body>
</html>