Phani1008 commited on
Commit
e57baaf
·
verified ·
1 Parent(s): 6a0a99f

Update pages/Natural_Language_Processing.py

Browse files
pages/Natural_Language_Processing.py CHANGED
@@ -13,9 +13,12 @@ def main():
13
  """
14
  )
15
 
 
16
  if st.button("Explore More"):
17
- js = "window.open('https://huggingface.co/spaces/Phani1008/Natural_Language_Processing', '_blank')"
18
- st.markdown(f'<script>{js}</script>', unsafe_allow_html=True)
 
 
19
 
20
  if __name__ == "__main__":
21
  main()
 
13
  """
14
  )
15
 
16
+ # Button to redirect to another Hugging Face space
17
  if st.button("Explore More"):
18
+ st.markdown(
19
+ '<a href="https://huggingface.co/spaces/your-target-space" target="_blank">Click here to explore!</a>',
20
+ unsafe_allow_html=True,
21
+ )
22
 
23
  if __name__ == "__main__":
24
  main()