/ Published in: HTML
if you make a long page and if you want to jump to a topic in your page, you just add id in a wherever you want and make a link to that id tag. In this case, i made some id in a tag. Don't forget id uses # mark !!
Expand |
Embed | Plain Text
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body style="background-color: #808080; color: #FFFFFF;" vlink="#0000A0" alink="#408080" link="#804000"> <!-- ########################################################################### # [ADDED] 2010/10/14 create favs.html # ########################################################################--> <!--############################################################################ # 3 unordered lists # #########################################################################--> <div> <ul> </ul> <ul style="list-style-type: circle"> </ul> <ul style="list-style-type: square"> </ul> <!--########################################################################### # 4 orderd lists # ########################################################################--> <ol style="list-style-type: lower-alpha"> </ol> <ol style="list-style-type: upper-alpha"> </ol> <ol style="list-style-type: lower-roman"> </ol> <ol style="list-style-type: upper-roman"> </ol> <ol> </ol> <!--########################################################################## # unoder list with image # #######################################################################--> <ul style="list-style-image: url(./023.png)"> </ul> <!--########################################################################### # Definition list # ########################################################################--> <dl> </dl> <a href="mailto:[email protected]" title="link to email me">Email Webmasterr</a><br /> </div> </body> </html>
You need to login to post a comment.
