Читайте также:
|
|
ОПИСАНИЕ ССЫЛОК
<body>
<p><a href="http://www.codecademy.com" title="This will send you to Codecademy!">Go to Codecademy.com</a></p>
<p> <a href="http://www.vk.com" title="This will send you to VK!">Go to vk.com</a></p>
</body>
Сслыки в <ul>
<ul>
<a href="http://vk.com"><li>1</li></a>
</ul>
_____________________________________________________________________________________
IMAGES
<body>
<img src="http://www.mt-soft.com.ar/wordpress/wp-content/uploads/2007/07/html-logo.jpg" width="100" height ="50" />
</body>
Height, width – размеры изображения.
_____________________________________________________________________________________
IMAGES WITH LINKS
<body>
<a href="http://cnn.com"> <img src="http://cdn.codecademy.com/assets/courses/cnn.gif" height="82" width="119" /> </a>
</body>
_____________________________________________________________________________________
ССЫЛКА В НОВОМ ОКНЕ (target="_blank")
<p>
I have been using <a target="_blank" href ="http://www.codeyear.com/">CodeYear</a> to learn to code in HTML so that I will be able to make my own web-pages without having to use expensive WYSIWYG software!
</p>
_____________________________________________________________________________________
РАЗМЕЩЕНИЕ ИЗОБРАЖЕНИЯ НА СТРАНИЦЕ
align="right"
align="left"
align="center"
пример:
<img src="http://www.kateglover.co.uk/html.png" align="right" />
СПИСОК (<ul>) (unordered list)
<ul> - ПУНКТИКИ СПИСКА ОТМЕЧЕНЫ ТОЧКОЙ.
a pony
world peace
iPhone 7
</ul>
_____________________________________________________________________________________
СПИСОК (<li>) (list item)
<ul>
<li>a pony</li>
<li>world peace</li>
<li>iPhone 7</li>
</ul>
СПИСОК (/ol) (ordered list)
<ol>
<li>Amass wealth.</li>
<li>Charm my way into meetings with world leaders.</li>
<li>Hypnotize them and take over their countries.</li>
<li>Cackle maniacally and stroke my hairless cat.</li>
</ol>
Дата добавления: 2015-08-17; просмотров: 36 | Нарушение авторских прав
<== предыдущая страница | | | следующая страница ==> |
Инструкция по созданию напоминаний в gmail | | | Появляется нумерация пунктов. |