-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
83 lines (76 loc) · 1.99 KB
/
contact.html
File metadata and controls
83 lines (76 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ORYCTO</title>
<link rel="apple-touch-icon" sizes="180x180" href="images/fe.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/fe.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/fe.png">
<link rel="manifest" href="images/fe.png">
<link rel="mask-icon" href="images/fe.png" color="#5bbad5">
<meta name="msapplication-TileColor" content="#ffc40d">
<meta name="theme-color" content="#ffffff">
<style>
h1 {
color: #333;
text-align: center;
}
h3 {
color: #333;
text-align: center;
}
a {
color: rgb(31, 31, 31);
text-align: center;
}
p {
color: rgb(63, 63, 63);
text-align: center;
}
form {
color: #333;
text-align: center;
}
</style>
</head>
<body>
<link rel="stylesheet" href="CSS/body.css">
<header>
<span class="logo">
<link rel="stylesheet" href="CSS/header.css">
<a href="/index.html"> <img src="images/ORYCTO logo.png"> </a>
</span>
<nav>
<a href="/login.html">My Company Profile</a>
<a href="/partners.html">Our Partners</a>
<a href="/contact.html">Contact us</a>
<a href="/about.html">About us</a>
</nav>
</header>
<main>
<h1>ORYCTO Contact Info:</h1>
</main>
<article>
<p>
E-Mail us at orycto.mp@gmail.com or press
<a href="mailto:orycto.mp@gmail.com">here</a>
<br>
or else submit your message below:
</p>
</article>
<form action="/sendMessage" method="POST">
<fieldset>
<label for="textMessage">Your Message:</label>
<br>
<textarea cols="40" rows="15"></textarea>
<br>
<input type="submit" value="Send Message">
</fieldset>
</form>
<footer>
<link rel="stylesheet" href="CSS/footer.css">
<small>Copyright © 2023 ORYCTO. All Rights Reserved.</small>
</footer>
</body>
</html>