-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
85 lines (74 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="VenciDev.site, my portfolio website. Here you can find my contact info and resume to learn more about my web development skills.">
<title>VenciDev - Contact</title>
<!-- Google fonts -->
<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=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style-global.css">
<link rel="stylesheet" href="style-contact.css">
<!--Nav bar icon from Font Awesome website-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar">
<div class="hamburger" onclick="toggleMenu()">☰</div>
<ul class="navbar-menu">
<li class="nav-item">
<a class="nav-link" href="index.html">
<i class="nav-icon fa-solid fa-house"></i>Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">
<i class="nav-icon fa-solid fa-book"></i>Resume
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">
<i class="nav-icon fa-solid fa-envelope"></i>Contact
</a>
</li>
</ul>
</nav>
<!-- Main content container -->
<div class="box-content">
<h2>Contact Information</h2>
<div class="social-container">
<div class="social-section">
<a href="https://github.com/VenciPython" class="social" target="_blank">
<img src="github-icon.png" alt="GitHub Icon" class="icon">GitHub</a>
</div>
<div class="social-section">
<a href="https://www.linkedin.com/in/ventsislav-zahariev-5664791a9/" class="social" target="_blank">
<img src="linkedin-icon.png" alt="LinkedIn Icon" class="icon">LinkedIn </a>
</div>
</div>
<h2>Contact Form</h2>
<div class="form-container"> <!-- Добавена рамка около формата -->
<form action="send_email.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Your name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Your e-mail address" required>
<label for="title">Title:</label> <!-- Ново поле за заглавие -->
<input type="text" id="title" name="title" placeholder="Message title">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" placeholder="Your message" required></textarea>
<button type="submit">Send</button>
</form>
</div>
</div>
<footer class="contact-footer">
© 2024 VenciDev | All rights reserved
</footer>
<script src="menu.js"></script> <!--JS-->
</body>
</html>