-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
114 lines (92 loc) · 4.31 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<title> 🐱 Contact Page </title>
</head>
<body>
<h1>Let's Get in Touch!</h1>
<h3>Hello! Thank you for your interest in contacting me.</p></h3>
<p>If you are looking for a freelance designer or developer:
I can only take on a few projects each month, and am typically booked a few months in advance.
For major redesigns, the minimum engagement is USD $3,000.
You may reach out via <a href="mailto:miaelenatapia@gmail.com">miaelenatapia@gmail.com</a> with project details, thank you!</p>
<p>If you have questions regarding UI/UX design, solopreneurship, etc:
Check out these Frequently Asked Questions. If they're not answered, feel free to ask me below.
If you want to know what tools or gears I'm using, check out these resources.</p>
<hr>
<table>
<thead>
<tr>
<th>
Please Fill Out the Form Below for Business Inquiries:
</th>
</tr>
<tbody>
<tr>
<td>
Name:
</td>
<td>
<input type="text" name="" value""">
</td>
</tr>
<tr>
<td>I work at:</td>
<td>
<input type="text" name="" value"""><br>
</td>
</tr>
<tr>
<td>
My email is:
</td>
<td>
<input type="text" name="" value"""><br>
</td>
</tr>
<tr>
<td>
I'm looking for a partner to help me with:
</td>
<td>
<input type="text" name="" value"""><br>
</td>
</tr>
<tr>
<td>
A Good Number for Me:
</td>
<td>
<input type="tel" id="phone" name="phone"
pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}"
required><br>
<small>Format: 123-456-7890</small>
</td>
<tr>
<td>
<form class="" action="index.html" method="post">
<label>Do you want to sign up to the email list?</label>
<input type="checkbox" name="" value="">
<input type="submit" name=""">
</form>
</td>
</tr>
</tr>
</tbody>
</thead>
</table>
<hr>
<h3>My Socials:</h3>
<p>My Instagram: <a href="https://www.instagram.com/mia___elena/">mia___elena</a></p>
<p>My Github: <a href="https://github.com/miaskyelena">miaskyelena</a></p>
<p>Email me: <a href="mailto:miaelenatapia@gmail.com">miaelenatapia@gmail.com</a></p>
</body>
</html>