ankithpatel commited on
Commit
3c5281e
·
verified ·
1 Parent(s): 9a4562b

Update pages/Machine learning VS Deep Learning.py

Browse files
pages/Machine learning VS Deep Learning.py CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  <table style="width: 100%; border-collapse: collapse; border: 1px solid black;">
2
  <tr style="background-color: #f2f2f2;">
3
  <th style="border: 1px solid black; padding: 8px; text-align: left;">Name</th>
@@ -15,3 +18,6 @@
15
  <td style="border: 1px solid black; padding: 8px;">San Francisco</td>
16
  </tr>
17
  </table>
 
 
 
 
1
+ import streamlit as st
2
+
3
+ html_code = """
4
  <table style="width: 100%; border-collapse: collapse; border: 1px solid black;">
5
  <tr style="background-color: #f2f2f2;">
6
  <th style="border: 1px solid black; padding: 8px; text-align: left;">Name</th>
 
18
  <td style="border: 1px solid black; padding: 8px;">San Francisco</td>
19
  </tr>
20
  </table>
21
+ """
22
+
23
+ st.markdown(html_code, unsafe_allow_html=True)