File size: 1,428 Bytes
7bf61c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st


def info_page():

    with st.container():
        st.markdown("""
            <style>

                .logo {
                    display: inline-block;
                    margin-right: 5px;
                    width: 20px; /* Ajusta el tamaño del logo aquí */
                }
                .about-container{
                    text-align: center;
                }
            </style>
            <div class="about-container" >
                <h1 >Acerca de este TFG</h1>
                <p>
                    <h2>Ignacio Macías Martínez</h2><br>
                    <strong>Grado de ciencia de datos aplicada</strong>: Trabajo final de grado 22.536.<br>
                    <strong>Tutora TFG</strong>: Teresa Divorra Vallhonrat.<br>
                    <strong>Profesor responsable de la asignatura</strong>: David Merino Arranz.<br>
                    <strong>Contacto</strong>: /
                    <a href="https://github.com/imaciasm"><img class="logo" 
                    src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"/>GitHub</a> \\ /
                    <a href="https://www.linkedin.com/in/imaciasm/"><img class="logo" 
                    src="https://upload.wikimedia.org/wikipedia/commons/c/ca/LinkedIn_logo_initials.png"/>LinkedIn</a> 
                    \\
                </p>
            </div>
        """, unsafe_allow_html=True)