-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
76 lines (70 loc) · 2.77 KB
/
contact.html
File metadata and controls
76 lines (70 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Claudia webportfolio">
<meta name="keywords" content="HTML, CSS">
<meta name="author" content="Claudia Patuzzo">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<link rel="stylesheet" href="myglobalpage.css">
<link rel="stylesheet" href="contact.css">
<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=Lato:ital,wght@0,700;1,700&display=swap" rel="stylesheet">
<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=Lato:ital,wght@0,700;1,700&family=Merriweather&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header> <!--Title of the portfolio for all pages-->
<h1 id="title">CLAUDIA <span style= "font-size:2em;">P</span>ATUZZO</h1>
</header>
<nav> <!-- Navigation bar-->
<ul id="navbar">
<li><a href="index.html" id="home">HOME</a></li>
<li ><a href="gallery.html" id="gallery">GALLERY</a></li>
<li><a href="about.html" id="about">ABOUT ME</a></li>
<li><a href="contact.html" id="contact">CONTACTS</a></li>
</ul>
</nav>
<header> <!--Header of the page introducing the content of the page-->
<h1>Contact Claudia</h1>
<h2>Let's talk!</h2>
</header>
<main> <!-- Contact info request-->
<section>
<h3>Any questions, feel free to contact me!</h3>
<form action="/action_page.php" method="post">
<ul id="info">
<li>
<label for="fname">First Name:</label><br>
<input type="text" id="fname" required>
</li>
<li>
<label for="lname">Last Name:</label><br>
<input type="text" id="lname" required>
</li>
<li>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required>
</li>
<li>
<label for="message">Please,leave your message:</label><br>
<textarea name="message" id="message"></textarea>
</li>
<li>
<input type="submit" id="submit" value="Submit">
</li>
</ul>
</form>
</section>
</main>
<footer> <!-- Footer Social media iconcs and copywrite text-->
<a href="https://www.linkedin.com/in/claudia-patuzzo/" class="fa fa-linkedin" target="_blank"></a>
<a href= "https://www.instagram.com/clo_patuzzo/" class="fa fa-instagram" target="_blank"></a>
<p id="copywrite">Copyright<span>©</span> 2022</p>
</footer>
</body>
</html>