-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
97 lines (61 loc) · 3.41 KB
/
contact.html
File metadata and controls
97 lines (61 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="./contact_styles.css">
<link rel="stylesheet" href="./media_queries.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <title>Mi Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Marvel:ital,wght@0,400;0,700;1,400;1,700&family=Share+Tech+Mono&family=Tourney:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<div class="global-wrapper">
<header class="contact-header">
<section class="top-section">
<nav class="nav-links">
<!-- ul>li*3>a -->
<a href="./index.html">home</a>
<a href="./projects.html">projects</a>
<a href="./contact.html" class="active">contact</a>
</nav>
</section>
</header>
<main>
<form class="contact-form" action="" method="post"> <!--dentro del formulario todos son de tipo submit, no hace falta ponerlo-->
<fieldset>
<legend class="contact-heading"> Contact </legend>
<div class="contact-fields">
<label for="name"> Name: </label> <!--Ese for hace que vayamos directamente al input-->
<input type="text" id="name" value="Name"> <!--el valor es lo que se envía, podemos pasar un solo identificador-->
</div>
<div class="contact-fields">
<label for="name"> Email: </label>
<input type="email" id="email" value="Email">
</div>
<div class="textarea">
<textarea name="message" rows="5">Message</textarea>
</div>
<button class="contact-button">Submit</button> <!--de momento si no puse a dónde se envía a la barra de la url-->
</fieldset>
</form>
</main>
<footer>
<!-- ul.contanct-list>li.contact-link*2>a-->
<section class="contact-list">
<a href="https://linkedin.com" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://github.com">
<i class="fa-brands fa-github" target="_blank"></i>
</a>
<a href="https://facebook.com" target="_blank">
<i class="fa-brands fa-square-facebook" target="_blank"></i>
</a>
</section>
</footer>
</div>
</body>
</html>