-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
89 lines (75 loc) · 2.7 KB
/
contact.html
File metadata and controls
89 lines (75 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How to Reach Sol Troche-Rodrigo</title>
<link rel="stylesheet" href="contact.css">
</head>
<body>
<div class="logo-heading">
<h1>Would love to connect!</h1>
<img class="logo" src="images/logo-sol.png" alt="Sol's Star Logo">
</div>
<p class="topnav">
<a href="index.html">About</a>
<a href="contact.html">Contact</a>
<a href="projects.html">Projects</a>
<p>
<div class="container">
<div>
<h2 class="subheading">
Feel free to reach out using the form below. I'm happy to discuss my projects, answer questions, or explore opportunities together!
</h2>
</div>
<div class="text-box">
<div>
<label for="last-name">Last Name:
<input
type="text"
id="last-name"
placeholder="last name"
/></label>
</div>
<div>
<label for="first-name">First Name:
<input
type="text"
id="first-name"
name="first-name" placeholder="first name"
/></label>
</div>
<div>
<label for="email-address">Email:
<input
type="text"
id="email-address"
placeholder="email address"
/></label>
</div>
<div>
<div class="text-box">
<label for="country-select">Select Your Country</label>
</div>
<div>
<select name="country" id="country-select">
<option value="Select"> -- Please select your country -- </option>
<option value="Spain">Spain</option>
<option value="France">France</option>
<option value="United States">United States</option>
</select>
</div>
</div>
</div>
<div class="margin-images">
<form method="post" action="https://oim.108122.xyz/form2">
<button type="submit"><img
src="images/mailbox.png"
class="size-image"
alt="submission button"
/></button>
</form>
</div>
</div>
</body>
</html>