Sathwikchowdary commited on
Commit
a270dfe
1 Parent(s): bb341e7

Update pages/Info_of_XML.py

Browse files
Files changed (1) hide show
  1. pages/Info_of_XML.py +3 -5
pages/Info_of_XML.py CHANGED
@@ -28,7 +28,7 @@ custom_css = """
28
 
29
  # Inject the CSS into the app
30
  st.markdown(custom_css, unsafe_allow_html=True)
31
- st.markdown("<h2 style='text-align: left; color: Black;'>📈What is Xentensible Markup Language(XML)</h2>", unsafe_allow_html=True)
32
  st.markdown(
33
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
34
  "XML (Extensible Markup Language) is a versatile markup language used for storing and transferring data. It is designed to be easily understood by both humans and machines, making it a popular choice for data exchange across various systems. XML organizes information in a hierarchical tree structure, where elements are defined using tags that may include attributes and nested sub-elements."
@@ -41,12 +41,10 @@ st.markdown(
41
  "</p>",
42
  unsafe_allow_html=True
43
  )
44
- st.markdown("<h2 style='text-align: left; color: Black;'>📈How to Read(XML)</h2>", unsafe_allow_html=True)
45
  st.markdown(
46
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
47
- "An XML file can be read using pandas by utilizing the function pd.read_xml("file path")."
48
  "</p>",
49
  unsafe_allow_html=True
50
  )
51
-
52
-
 
28
 
29
  # Inject the CSS into the app
30
  st.markdown(custom_css, unsafe_allow_html=True)
31
+ st.markdown("<h2 style='text-align: left; color: Black;'>📈What is Extensible Markup Language (XML)</h2>", unsafe_allow_html=True)
32
  st.markdown(
33
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
34
  "XML (Extensible Markup Language) is a versatile markup language used for storing and transferring data. It is designed to be easily understood by both humans and machines, making it a popular choice for data exchange across various systems. XML organizes information in a hierarchical tree structure, where elements are defined using tags that may include attributes and nested sub-elements."
 
41
  "</p>",
42
  unsafe_allow_html=True
43
  )
44
+ st.markdown("<h2 style='text-align: left; color: Black;'>📈How to Read XML</h2>", unsafe_allow_html=True)
45
  st.markdown(
46
  "<p style='font-size: 16px; color: White; font-style: italic;'>"
47
+ "An XML file can be read using pandas by utilizing the function <code>pd.read_xml(&quot;file path&quot;)</code>."
48
  "</p>",
49
  unsafe_allow_html=True
50
  )