update code and add image of project
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -105,7 +105,7 @@
|
||||
<h2>Our Activities</h2>
|
||||
<ul>
|
||||
<li><strong>BuffTeks Event:</strong> Host competitions and hackathons that empower students to use classroom knowledge for real-world solutions.</li>
|
||||
<li><strong>BuffTeks Project:</strong> Faculty-led coding projects to provide IT solutions and support to problems facing local companies as part of an experiential learning effort.</li>
|
||||
<li><strong>BuffTeks Project:</strong> Faculty-led coding projects to provide IT solutions and support to problems facing local communities as part of an experiential learning effort.</li>
|
||||
<li><strong>BuffTeks Classroom:</strong> An open learning platform devoted to sharing knowledge of information technology including Python programming and web application development.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
@@ -1 +1,6 @@
|
||||
print("hello")
|
||||
print("hello")
|
||||
|
||||
i = 100
|
||||
while(i>10):
|
||||
print(f"Value of {i}")
|
||||
i = i-1
|
||||
@@ -1,4 +1,17 @@
|
||||
import streamlit as st
|
||||
import time
|
||||
|
||||
def project():
|
||||
st.title("BuffTeks Project")
|
||||
st.title("BuffTeks Project")
|
||||
project_introduction = """
|
||||
Faculty-led coding projects to provide IT solutions and support to problems facing local communities as part of an experiential learning effort.
|
||||
"""
|
||||
st.write(project_introduction)
|
||||
|
||||
st.divider()
|
||||
|
||||
# Project Gallery
|
||||
st.subheader("Project Gallery")
|
||||
st.image("./images/CommunityLinkLogo.svg")
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user