개발/대시보드

웹 대시보드 - 여러 UI함수 1(title,header,subheader,text)

웅'jk 2022. 12. 12. 17:05

 

title 제목을 출력할 수 있다.
header 머릿말을 출력할 수 있다.
subheader header보다 조금 작게 출력할 수 있다.
text 기본 글자 크기로 출력한다.
write text보다 조금 더 작게 출력한다.
import streamlit as st

def main() :
    
    st.title('웹 대시보드')
    
    st.text('웹 대시보드 개발')
    st.header('이 영역은 헤더 영역')
    st.subheader('이 영역은 서브 헤더 영역')
    
if __name__ == '__main__' :
    main()