Nikhithapotnuru commited on
Commit
72f46b9
·
verified ·
1 Parent(s): 13ca95b

Update Home.py

Browse files
Files changed (1) hide show
  1. Home.py +16 -32
Home.py CHANGED
@@ -42,38 +42,22 @@ st.markdown(
42
  )
43
 
44
 
45
- st.markdown(
46
- """
47
- <style>
48
- /* Importing Web-Style Google Fonts */
49
- @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Montserrat:wght@400;600&family=Lato:wght@400;700&display=swap');
50
-
51
- /* Rainbow Background */
52
- .stApp {
53
- background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
54
- color: #333333;
55
- padding: 20px;
56
- font-family: 'Inter', sans-serif;
57
- }
58
-
59
- /* Heading Styles with Montserrat */
60
- h1, h2, h3, h4 {
61
- color: #ffffff; /* White for contrast */
62
- font-family: 'Montserrat', sans-serif;
63
- font-weight: 600;
64
- text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
65
- }
66
-
67
- /* Link Styling */
68
- a {
69
- color: #ffffff; /* White links for visibility */
70
- text-decoration: none;
71
- font-weight: 500;
72
- }
73
- </style>
74
- """,
75
- unsafe_allow_html=True
76
- )
77
 
78
 
79
 
 
42
  )
43
 
44
 
45
+ st.markdown('''
46
+ <div style="background-color:#f5f5f5; border-radius:10px; padding:20px; margin-bottom:20px;">
47
+ <h1>
48
+ Welcome To
49
+ <span style="color:red;">Z</span>
50
+ <span style="color:orange;">e</span>
51
+ <span style="color:yellow;">r</span>
52
+ <span style="color:green;">o</span>
53
+ to
54
+ <span style="color:blue;">H</span>
55
+ <span style="color:indigo;">e</span>
56
+ <span style="color:violet;">r</span>
57
+ <span style="color:red;">o</span> ML
58
+ </h1>
59
+ </div>
60
+ ''', unsafe_allow_html=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
 
62
 
63