Spaces:
Running
Running
Sathwikchowdary
commited on
Commit
•
2c4ba00
1
Parent(s):
0d04dc2
Update pages/Info_of_HTML.py
Browse files- pages/Info_of_HTML.py +14 -2
pages/Info_of_HTML.py
CHANGED
@@ -52,7 +52,19 @@ st.markdown(
|
|
52 |
st.markdown("<h2 style='text-align: left; color: Black;'>How to Overcome These Errors</h2>", unsafe_allow_html=True)
|
53 |
st.markdown(
|
54 |
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
55 |
-
"Utilize parsers such as html.parser and define the encoding explicitly when opening files,will clear the Issues."
|
56 |
"</p>",
|
57 |
unsafe_allow_html=True
|
58 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
st.markdown("<h2 style='text-align: left; color: Black;'>How to Overcome These Errors</h2>", unsafe_allow_html=True)
|
53 |
st.markdown(
|
54 |
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
55 |
+
"Utilize parsers such as html.parser and define the encoding explicitly when opening files, will clear the Issues."
|
56 |
"</p>",
|
57 |
unsafe_allow_html=True
|
58 |
+
)
|
59 |
+
|
60 |
+
# Adding the link
|
61 |
+
st.markdown(
|
62 |
+
"<h2 style='text-align: left; color: Black;'>Useful Resource</h2>", unsafe_allow_html=True
|
63 |
+
)
|
64 |
+
st.markdown(
|
65 |
+
"<p style='font-size: 16px; color: White;'>"
|
66 |
+
"You can explore further on Google Colab using the following link: "
|
67 |
+
"<a href='https://colab.research.google.com/drive/1JirPtBvjsVW5OZQt9flKlnro7bQ5RzXP?usp=sharing' style='color: #FFD700;'>Open Resource</a>"
|
68 |
+
"</p>",
|
69 |
+
unsafe_allow_html=True
|
70 |
+
)
|