标签:设置 href 需要 通过 div 用户名 img 属性 标签
链接
通过<a href=‘url‘>your msg</a>进行链接,href属性中指定链接地址。
在网站内部,必然存在大量转跳,就需要a标签。
<a href="{% url ‘test_url_1‘ %}">this is test_url_1 test</a> <a href="{% url ‘test_url_2‘ %}">this is test_url_2 test</a>
段落
<p>xx</p>实现段落
没有段落,这两个链接就在一行上,加上段落就分为两段
<p><a href="{% url ‘test_url_1‘ %}">this is test_url_1 test</a></p> <p><a href="{% url ‘test_url_2‘ %}">this is test_url_2 test</a></p>
图片
<img>实现图像
比如用户名和调用头像,就需要图像,并且设置大小
<img src="/static/img/avatar2.jpg" width="110" height=‘100‘>
标签:设置 href 需要 通过 div 用户名 img 属性 标签
原文地址:https://www.cnblogs.com/jabbok/p/10159198.html