Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -17,8 +17,21 @@ with col2:
|
|
17 |
video_bytes1 = video_file1.read()
|
18 |
st.video(video_bytes1)
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
url1 = "https://www.responsible.ai/faq"
|
21 |
-
|
|
|
|
|
22 |
|
23 |
|
24 |
|
|
|
17 |
video_bytes1 = video_file1.read()
|
18 |
st.video(video_bytes1)
|
19 |
|
20 |
+
change_link_color = """
|
21 |
+
<style>
|
22 |
+
a:link {
|
23 |
+
color: green;
|
24 |
+
background-color: transparent;
|
25 |
+
text-decoration: none;
|
26 |
+
}
|
27 |
+
</style>
|
28 |
+
"""
|
29 |
+
st.markdown(change_link_color , unsafe_allow_html=True)
|
30 |
+
|
31 |
url1 = "https://www.responsible.ai/faq"
|
32 |
+
url2 = "https://www.responsible.ai"
|
33 |
+
url3 = "https://www.responsible.ai"
|
34 |
+
st.write("FAQs [π](%s)" % url1 + "Press Release [π](%s)" % url2 + "Methodology [π](%s)" % url3)
|
35 |
|
36 |
|
37 |
|