-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (67 loc) · 2.39 KB
/
Copy pathindex.html
File metadata and controls
67 lines (67 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles/index/index.css">
<title>UMES Project</title>
</head>
<body>
<nav>
<div class="name">
<a href="/">
<img src="/assets/umes.png" alt="">
</a>
</div>
<div class="links">
<a href="/clients.html">Clients</a>
<a href="/doc">Documentation</a>
<a href="/exemples">Exemples</a>
<a href="https://github.com/UMES-Project">
<img src="/assets/github.svg" alt="">
</a>
</div>
</nav>
<main>
<div class="block">
<div class="umes-title">
<h1>UMES</h1>
<span>Universal Message Encryption System</span>
</div>
<h3>An update for online message confidentiality</h3>
<div class="buttons">
<a href="/clients.html">Download Client</a>
<a href="/doc">Documentation</a>
</div>
</div>
<div class="block">
<h1>Proof Of Concept</h1>
<iframe class="poc-video" width="560" height="315" src="https://www.youtube.com/embed/cKJEe_dWnxk?si=IoIACp6ZtV2CuWab" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="block">
<h1>Offical Clients</h1>
<div class="clients">
<a href="#" class="client">
<img src="/assets/clients/discord.svg" alt="">
Discord
</a>
</div>
<h1>Offical Libraries</h1>
<div class="libraries">
<a href="#" class="library">
<img src="/assets/libraries/firefoxbrowser.svg" alt="">
Web Ext
</a>
<a href="#" class="library">
<img src="/assets/libraries/javascript.svg" alt="">
Javascript
</a>
<a href="#" class="library">
<img src="/assets/libraries/python.svg" alt="">
Python
</a>
</div>
</div>
</main>
</body>
</html>