-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpartners.html
More file actions
69 lines (63 loc) · 1.64 KB
/
partners.html
File metadata and controls
69 lines (63 loc) · 1.64 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
<!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;
}
li {
text-align: center;
font-weight: bold;
}
</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 Partners:</h1>
<ul>
<li>MYTILINEOS S.A.</li>
<li>ALUMIL</li>
<li>SIDEL</li>
<li>GIZELIS.CO</li>
<li>EXAL</li>
<li>FENESTRAL</li>
</ul>
</main>
<footer>
<link rel="stylesheet" href="CSS/footer.css">
<small>Copyright © 2023 ORYCTO. All Rights Reserved.</small>
</footer>
</body>
</html>