-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
76 lines (69 loc) · 2.09 KB
/
about.html
File metadata and controls
76 lines (69 loc) · 2.09 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="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;
}
.text-box {
border: 2px solid #000;
/* Set the border style */
padding: 12px;
/* Set padding around the text */
text-align: center;
}
.text-box::selection {
color: rgb(255, 243, 243);
background: rgb(255, 153, 20);
}
</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>About us:</h1>
<div class="text-box">
ORYCTO is a Raw Material Marketplace which connects Suppliers with Customers
through an easy to use online platform! The company was founded in Greece at 2023
by Theodoridis Prodromos and Choufteris Dimitrios and have previously received the
First Prize as the most innovative business idea in DUTH Innovation Challenge which
took place in May 2023!
</div>
</main>
<footer>
<link rel="stylesheet" href="CSS/footer.css">
<small>Copyright © 2023 ORYCTO. All Rights Reserved.</small>
</footer>
</body>
</html>