javi9 commited on
Commit
e1e19f4
·
verified ·
1 Parent(s): 393cca8

Upload 3 files

Browse files
Files changed (3) hide show
  1. index.html +30 -0
  2. logo.png +0 -0
  3. style.css +20 -0
index.html ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html >
2
+ <html lang = "ca">
3
+ <head>
4
+ <meta charset = "UTF-8">
5
+ <meta http-equiv = "X-UA-Compatible" content = "IE=edge">
6
+ <meta name = "viewport" content = "width=device-width, initial-scale=1.0">
7
+ <link rel="stylesheet" href="style.css">
8
+ <title> NER català </title>
9
+ </head>
10
+ <body>
11
+ <header>
12
+ <img src="logo.png" alt="Logo IOC">
13
+ </header>
14
+
15
+ <main>
16
+ <iframe
17
+ src="https://javi9-ner_catala.hf.space"
18
+ frameborder="0"
19
+ width="850"
20
+ height="450"
21
+ ></iframe>
22
+
23
+
24
+ </main>
25
+
26
+ <footer>
27
+ Fet amb ❤️ per l'IOC
28
+ </footer>
29
+ </body>
30
+ </html>
logo.png ADDED
style.css ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ h1 {
2
+ text-align: center;
3
+ font-family: Arial, sans-serif;
4
+ }
5
+ footer {
6
+ text-align: center;
7
+ font-family: Arial, sans-serif;
8
+ font-size: 18px;
9
+ margin-top: 50px;
10
+ }
11
+
12
+ header{
13
+ display: flex;
14
+ justify-content: flex-end;
15
+ }
16
+
17
+ img {
18
+ width: 100px;
19
+ height: auto;
20
+ }