rhea2809 commited on
Commit
4a341a7
Β·
1 Parent(s): 652f233

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -1
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
- st.write("FAQs [πŸ”—](%s)" % url1)
 
 
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