jeeva780 commited on
Commit
9fb179a
·
verified ·
1 Parent(s): f82bf43

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -0
app.py ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ # Define URLs
4
+ url1 = "https://example1.com"
5
+ url2 = "https://example2.com"
6
+ url3 = "https://example3.com"
7
+ url4 = "https://example4.com"
8
+
9
+ # Layout 1
10
+ st.markdown(f"[Layout 1]({url1})")
11
+
12
+ # Layout 2
13
+ col1, col2 = st.columns(2)
14
+ with col1:
15
+ st.markdown(f"[Layout 2a]({url2})")
16
+ with col2:
17
+ st.markdown(f"[Layout 2b]({url3})")
18
+
19
+ # Layout 3
20
+ st.text("Layout 3:")
21
+ st.write(f"[Layout 3]({url4})")
22
+
23
+ # Layout 4
24
+ st.markdown("---")
25
+ st.write(f"[Layout 4]({url1})")