码迷,mamicode.com
首页 > Web开发 > 详细

html基础

时间:2018-12-22 01:24:50      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:设置   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‘>

  

 

html基础

标签:设置   href   需要   通过   div   用户名   img   属性   标签   

原文地址:https://www.cnblogs.com/jabbok/p/10159198.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!