Edgaaar1 commited on
Commit
eb1112b
verified
1 Parent(s): 3d0c60a

Upload 3 files

Browse files
Files changed (3) hide show
  1. index1.html +29 -0
  2. logoinstiverd.jpg +0 -0
  3. style1.css +49 -0
index1.html ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <html>
3
+ <head>
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <title>App de reciclatge</title>
6
+ <link rel="stylesheet" href="style1.css">
7
+ <script type="module" src="https://gradio.s3-us-west-2.amazonaws.com/4.31.1/gradio.js"></script>
8
+ </head>
9
+ <body>
10
+ <header>
11
+ <img src="logoinstiverd.jpg"class="logo">
12
+ <h1 class="titol">App de reciclatge</h1>
13
+ </header>
14
+ <main>
15
+ <section class="descripci贸">
16
+ <p>Aquest app consisteix en que tu li envies una imatge com per exemple de cartr贸 o una ampolla de vidre... i et diu en quin contenidor ho hauries de tirar.</p>
17
+ </section>
18
+ <section class="app">
19
+ <gradio-app src="https://edgaaar1-app-tecno.hf.space"></gradio-app>
20
+ </section>
21
+ </main>
22
+ <footer>
23
+ <div class="nom">
24
+ <p>Edgar Gibert</p>
25
+ </div>
26
+ <p class="lloc">Fet a Calaf</p>
27
+ </footer>
28
+ </body>
29
+ </html>
logoinstiverd.jpg ADDED
style1.css ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ margin: 0;
4
+ padding: 0;
5
+ }
6
+
7
+ header {
8
+ display: flex;
9
+ justify-content: space-between;
10
+ align-items: center;
11
+ padding: 20px;
12
+
13
+ }
14
+
15
+ .logo {
16
+ height: 100px;
17
+ }
18
+
19
+ .titol {
20
+ text-align: center;
21
+ flex-grow: 1;
22
+ margin: 0;
23
+ font-size: 30px;
24
+ }
25
+
26
+ .descripci贸 {
27
+ text-align: center;
28
+ margin: 20px 0;
29
+ padding: 0 20px;
30
+ }
31
+
32
+ .app {
33
+ text-align: center;
34
+ margin: 40px 0;
35
+ padding: 0 20px;
36
+ }
37
+
38
+ footer {
39
+ display: flex;
40
+ justify-content: space-between;
41
+ align-items: flex-end;
42
+ padding: 20px;
43
+ }
44
+
45
+
46
+ .lloc {
47
+ text-align: right;
48
+ margin: 0;
49
+ }