Markdown link not working

st.markdown( "[![linkdin](https://content.linkedin.com/content/dam/me/business/en-us/amp/brand-site/v2/bg/LI-Bug.svg.original.svg)](https://www.linkedin.com/in/souvenger/)" )
not wotking the image appearing bigger than its actual size, this is a logo . streamlit version1.27.0

Hi @souvenger

You can also use something like the following to resize images:

st.markdown('''
<img src="image.png" width="200" height="100">
''', unsafe_allow_html=True)