Skip to content

Commit 29c9ae5

Browse files
committed
copy and paste basic streamlit code
1 parent 7c37e8a commit 29c9ae5

2 files changed

Lines changed: 47 additions & 17 deletions

File tree

Main.html

Lines changed: 30 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link rel="website icon" type="webp" href="website_icon.webp" />
1919
<title>Explore Knowledge</title>
2020
</head>
21-
</script>
21+
2222
<body>
2323
<h1>Welcome to Andrea's page!</h1>
2424
<!--
@@ -28,10 +28,12 @@ <h1>Welcome to Andrea's page!</h1>
2828
</p>
2929
-->
3030
<h2>Project Ideas for Web Development</h2>
31-
<h3>Completed Projects</h2>
31+
<h3>Completed Projects</h3>
3232
<ul>
3333
<li>
34-
<a href="Calculator/Main_Calculator.html">Go to Calculator (Built with HTML, CSS, and JavaScript)</a>
34+
<a href="Calculator/Main_Calculator.html"
35+
>Go to Calculator (Built with HTML, CSS, and JavaScript)</a
36+
>
3537
</li>
3638
<li>
3739
<a href="Quiz App/Main_Quiz_App.html"
@@ -40,14 +42,21 @@ <h3>Completed Projects</h2>
4042
</li>
4143
<li>
4244
<a href="RockPaperScissors-Game/Main_Stone_game.html"
43-
>Go to Rock, Paper, Scissors game (Built with HTML, CSS, and JavaScript)</a
45+
>Go to Rock, Paper, Scissors game (Built with HTML, CSS, and
46+
JavaScript)</a
4447
>
4548
</li>
46-
</ul>
49+
</ul>
4750

48-
<h3>Future Projects</h3>
49-
<ul>
50-
<li><a href="Note App/Main_Note_App.html">Note App (Built with HTML, CSS, JavaScript and Node.js) - Work in progress</a></li>
51+
<h3>Future Projects</h3>
52+
<ul>
53+
<li>Calculator (Built with Python)</li>
54+
<li>
55+
<a href="Note App/Main_Note_App.html"
56+
>Note App (Built with HTML, CSS, JavaScript and Node.js) - Work in
57+
progress</a
58+
>
59+
</li>
5160
<li>Stopwatch App</li>
5261
<li>QR Code Reader</li>
5362
<li>Weather App</li>
@@ -97,17 +106,21 @@ <h3>Future Projects</h3>
97106
>CodeHub Tech</a
98107
>
99108
</p>
100-
</body>
101-
102-
<footer>
103-
104-
<h2>Contact</h2>
105-
<!--
109+
<footer>
110+
<h2>Contact</h2>
111+
<!--
106112
<address>
107113
<span style="font-style: normal;">Email:</span> <a href="mailto:freudandrea0520@gmail.com">freudandrea0520@gmail.com</a>
108114
</address>
109115
-->
110-
<p>GitHub: <a href="https://github.com/Nagraggini" target="https://github.com/Nagraggini">github.com/Nagraggini</a></p>
111-
</footer>
112-
116+
<p>
117+
GitHub:
118+
<a
119+
href="https://github.com/Nagraggini"
120+
target="https://github.com/Nagraggini"
121+
>github.com/Nagraggini</a
122+
>
123+
</p>
124+
</footer>
125+
</body>
113126
</html>

streamlit_app.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import streamlit as st
2+
3+
st.title("Hello Streamlit-er 👋")
4+
st.markdown(
5+
"""
6+
This is a playground for you to try Streamlit and have fun.
7+
8+
**There's :rainbow[so much] you can build!**
9+
10+
We prepared a few examples for you to get started. Just
11+
click on the buttons above and discover what you can do
12+
with Streamlit.
13+
"""
14+
)
15+
16+
if st.button("Send balloons!"):
17+
st.balloons()

0 commit comments

Comments
 (0)