rhea2809's picture
Update app.py
d43acd0 verified
raw
history blame
1.47 kB
import streamlit as st
from PIL import Image
image = Image.open("RAII.png")
st.image(image, width = 200)
col1, col2 = st.columns(2,gap="small")
with col1:
image = Image.open("RAII.png")
st.image(image, width = 200)
with col2:
image = Image.open("RAII.png")
st.image(image, width = 200)
col1, col2 = st.columns(2,gap="small")
with col1:
image = Image.open("RAII.png")
st.image(image, width = 200)
with col2:
image = Image.open("RAII.png")
st.image(image, width = 200)
col1, col2 = st.columns(2,gap="small")
with col1:
image = Image.open("RAII.png")
st.image(image, width = 200)
with col2:
image = Image.open("RAII.png")
st.image(image, width = 200)
change_link_color = """
<style>
a:link {
color: green;
background-color: transparent;
text-decoration: none;
}
</style>
"""
st.markdown(change_link_color , unsafe_allow_html=True)
st.write('<h4> FAQs <a href="https://www.responsible.ai/faq">πŸ”—</a> &nbsp;&nbsp; Press Release <a href="https://www.responsible.ai/post/responsible-ai-institute-launches-raise-benchmarks-to-operationalize-scale-responsible-ai-policies?postId=af70f3b3-a320-42c7-b9f3-f829b67619c4">πŸ”—</a> &nbsp;&nbsp; Methodology <a href="https://www.responsible.ai/post/raise-corporate-ai-policy-benchmark-methodology?postId=19034c80-baea-4e90-8235-10394a760139">πŸ”—</a></h4>', unsafe_allow_html=True)