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

Update pages/Machine learning VS Deep Learning.py

Browse files
pages/Machine learning VS Deep Learning.py CHANGED
@@ -1,20 +1,17 @@
1
- import streamlit as st
2
-
3
- html_code = """
4
- <div style="
5
- border: 2px solid black;
6
- padding: 20px;
7
- margin: 20px;
8
- border-radius: 10px;
9
- background-color: #f0f0f0;
10
- width: 300px;
11
- height: 150px;
12
- text-align: center;
13
- box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
14
- ">
15
- <h3 style="color: #333;">This is a Box</h3>
16
- <p style="color: #555;">You can customize the size, color, and content of this box.</p>
17
- </div>
18
- """
19
-
20
- st.markdown(html_code, unsafe_allow_html=True)
 
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>
4
+ <th style="border: 1px solid black; padding: 8px; text-align: left;">Age</th>
5
+ <th style="border: 1px solid black; padding: 8px; text-align: left;">City</th>
6
+ </tr>
7
+ <tr>
8
+ <td style="border: 1px solid black; padding: 8px;">Alice</td>
9
+ <td style="border: 1px solid black; padding: 8px;">25</td>
10
+ <td style="border: 1px solid black; padding: 8px;">New York</td>
11
+ </tr>
12
+ <tr>
13
+ <td style="border: 1px solid black; padding: 8px;">Bob</td>
14
+ <td style="border: 1px solid black; padding: 8px;">30</td>
15
+ <td style="border: 1px solid black; padding: 8px;">San Francisco</td>
16
+ </tr>
17
+ </table>