亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? htmltags.java

?? java itext java itext java itext
?? JAVA
字號(hào):
/*
 * $Id: HtmlTags.java,v 1.16 2001/12/10 13:53:21 blowagie Exp $
 * $Name:  $
 *
 * Copyright (c) 2001 Bruno Lowagie.
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Library General Public License as published
 * by the Free Software Foundation; either version 2 of the License, or any
 * later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Library general Public License for more
 * details.
 *
 * You should have received a copy of the GNU Library General Public License along
 * with this library; if not, write to the Free Foundation, Inc., 59 Temple Place,
 * Suite 330, Boston, MA 02111-1307 USA.
 *
 * If you didn't download this code from the following link, you should check if
 * you aren't using an obsolete version:
 * http://www.lowagie.com/iText/
 *
 * ir-arch Bruno Lowagie,
 * Adolf Baeyensstraat 121
 * 9040 Sint-Amandsberg
 * BELGIUM
 * tel. +32 (0)9 228.10.97
 * bruno@lowagie.com
 *
 */

package com.lowagie.text.html;

import java.awt.Color;

/**
 * A class that contains all the possible tagnames and their attributes.
 *
 * @author  bruno@lowagie.com
 */

public class HtmlTags {
    
/** the root tag. */
    public static final String HTML = "html";
    
/** the head tag */
    public static final String HEAD = "head";
    
/** This is a possible HTML attribute for the HEAD tag. */
    public static final String CONTENT = "content";
    
/** This is a possible HTML-tag. */
    public static final String LINK = "link";
    
/** This is a possible HTML attribute for the LINK tag. */
    public static final String CSS = "text/css";
    
/** This is a possible HTML attribute for the LINK tag. */
    public static final String REL = "rel";
    
/** This is a possible HTML attribute for the TD tag. */
    public static final String STYLESHEET = "stylesheet";
    
/** This is a possible HTML attribute for the LINK tag. */
    public static final String TYPE = "type";
    
/** the meta tag */
    public static final String META = "meta";
    
/** attribute of the root tag */
    public static final String SUBJECT = "subject";
    
/** attribute of the root tag */
    public static final String KEYWORDS = "keywords";
    
/** attribute of the root tag */
    public static final String AUTHOR = "author";
    
/** the title tag. */
    public static final String TITLE = "title";
    
/** the body tag. */
    public static final String BODY = "body";
    
/** This is a possible HTML attribute for the BODY tag. */
    public static final String TOPMARGIN = "topmargin";
    
/** This is a possible HTML attribute for the BODY tag. */
    public static final String BOTTOMMARGIN = "bottommargin";
    
/** This is a possible HTML attribute for the BODY tag. */
    public static final String LEFTMARGIN = "leftmargin";
    
/** This is a possible HTML attribute for the BODY tag. */
    public static final String RIGHTMARGIN = "rightmargin";
    
    // Phrases, Anchors, Lists and Paragraphs
    
/** the chunk tag */
    public static final String CHUNK = "font";
    
/** the phrase tag */
    public static final String PHRASE = "font";
    
/** the phrase tag */
    public static final String CODE = "code";
    
/** the phrase tag */
    public static final String VAR = "var";
    
/** the anchor tag */
    public static final String ANCHOR = "a";
    
/** the list tag */
    public static final String ORDEREDLIST = "ol";
    
/** the list tag */
    public static final String UNORDEREDLIST = "ul";
    
/** the listitem tag */
    public static final String LISTITEM = "li";
    
/** the paragraph tag */
    public static final String PARAGRAPH = "p";
    
/** the paragraph tag */
    public static final String DIV = "div";
    
/** attribute of anchor tag */
    public static final String NAME = "name";
    
/** attribute of anchor tag */
    public static final String REFERENCE = "href";
    
/** attribute of anchor tag */
    public static final String[] H = new String[6];
    static {
        H[0] = "h1";
        H[1] = "h2";
        H[2] = "h3";
        H[3] = "h4";
        H[4] = "h5";
        H[5] = "h6";
    }
    
    // Chunks
    
/** attribute of the chunk tag */
    public static final String FONT = "face";
    
/** attribute of the chunk tag */
    public static final String SIZE = "point-size";
    
/** attribute of the chunk/table/cell tag */
    public static final String COLOR = "color";
    
/** some phrase tag */
    public static final String EM = "em";
    
/** some phrase tag */
    public static final String I = "i";
    
/** some phrase tag */
    public static final String STRONG = "strong";
    
/** some phrase tag */
    public static final String B = "b";
    
/** some phrase tag */
    public static final String S = "s";
    
/** some phrase tag */
    public static final String U = "u";
    
/** some phrase tag */
    public static final String SUB = "sub";
    
/** some phrase tag */
    public static final String SUP = "sup";
    
/** the possible value of a tag */
    public static final String HORIZONTALRULE = "hr";
    
    // tables/cells
    
/** the table tag */
    public static final String TABLE = "table";
    
/** the cell tag */
    public static final String ROW = "tr";
    
/** the cell tag */
    public static final String CELL = "td";
    
/** attribute of the cell tag */
    public static final String HEADERCELL = "th";
    
/** attribute of the table tag */
    public static final String COLUMNS = "cols";
    
/** attribute of the table tag */
    public static final String CELLPADDING = "cellpadding";
    
/** attribute of the table tag */
    public static final String CELLSPACING = "cellspacing";
    
/** attribute of the cell tag */
    public static final String COLSPAN = "colspan";
    
/** attribute of the cell tag */
    public static final String ROWSPAN = "rowspan";
    
/** attribute of the cell tag */
    public static final String NOWRAP = "nowrap";
    
/** attribute of the table/cell tag */
    public static final String BORDERWIDTH = "border";
    
/** attribute of the table/cell tag */
    public static final String WIDTH = "width";
    
/** attribute of the table/cell tag */
    public static final String BACKGROUNDCOLOR = "bgcolor";
    
/** attribute of the table/cell tag */
    public static final String BORDERCOLOR = "bordercolor";
    
/** attribute of paragraph/image/table tag */
    public static final String ALIGN = "align";
    
/** attribute of chapter/section/paragraph/table/cell tag */
    public static final String LEFT = "left";
    
/** attribute of chapter/section/paragraph/table/cell tag */
    public static final String RIGHT = "right";
    
/** attribute of the cell tag */
    public static final String HORIZONTALALIGN = "align";
    
/** attribute of the cell tag */
    public static final String VERTICALALIGN = "valign";
    
/** attribute of the table/cell tag */
    public static final String TOP = "top";
    
/** attribute of the table/cell tag */
    public static final String BOTTOM = "bottom";
    
    // Misc
    
/** the image tag */
    public static final String IMAGE = "img";
    
/** attribute of the image tag */
    public static final String URL = "src";
    
/** attribute of the image tag */
    public static final String ALT = "alt";
    
/** attribute of the image tag */
    public static final String PLAINWIDTH = "width";
    
/** attribute of the image tag */
    public static final String PLAINHEIGHT = "height";
    
/** the newpage tag */
    public static final String NEWLINE = "br";
    
    // alignment attribute values
    
/** the possible value of an alignment attribute */
    public static final String ALIGN_LEFT = "Left";
    
/** the possible value of an alignment attribute */
    public static final String ALIGN_CENTER = "Center";
    
/** the possible value of an alignment attribute */
    public static final String ALIGN_RIGHT = "Right";
    
/** the possible value of an alignment attribute */
    public static final String ALIGN_JUSTIFIED = "Justify";
    
/** the possible value of an alignment attribute */
    public static final String ALIGN_TOP = "Top";
    
/** the possible value of an alignment attribute */
    public static final String ALIGN_MIDDLE = "Middle";
    
/** the possible value of an alignment attribute */
    public static final String ALIGN_BOTTOM = "Bottom";
    
/** the possible value of an alignment attribute */
    public static final String ALIGN_BASELINE = "Baseline";
    
/** the possible value of an alignment attribute */
    public static final String DEFAULT = "Default";
    
}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美色爱综合网| 波多野结衣亚洲一区| 欧美喷潮久久久xxxxx| 亚洲制服丝袜av| 欧美亚一区二区| 日韩影院免费视频| 欧美va日韩va| 国产一区二区三区免费看| 国产亚洲一本大道中文在线| 成人一区二区三区在线观看| 亚洲伦理在线精品| 欧美三级乱人伦电影| 日韩精品五月天| 国产婷婷色一区二区三区在线| 成人晚上爱看视频| 亚洲九九爱视频| 51精品久久久久久久蜜臀| 久久精品国产亚洲aⅴ| 久久久精品免费免费| 色综合欧美在线| 日韩成人免费在线| 久久精品视频免费| 欧美在线free| 国产真实乱偷精品视频免| 亚洲人123区| 日韩午夜在线观看| 91亚洲大成网污www| 日本不卡免费在线视频| 亚洲国产成人在线| 欧美日本乱大交xxxxx| 国产传媒久久文化传媒| 午夜国产精品一区| 中文一区二区完整视频在线观看 | 中文字幕欧美一| 欧美日韩中文国产| 粗大黑人巨茎大战欧美成人| 日韩成人午夜精品| 亚洲精品国产一区二区精华液| 日韩午夜中文字幕| 欧美亚洲国产一区二区三区va| 国产乱国产乱300精品| 亚洲一区电影777| 国产精品久久久久桃色tv| 欧美一区二区三区性视频| av在线不卡观看免费观看| 蜜桃视频在线一区| 亚洲卡通动漫在线| 中文字幕第一区综合| 日韩欧美一级二级三级| 91浏览器打开| 国产91精品免费| 久久99久久99精品免视看婷婷| 亚洲国产精品久久久男人的天堂| 国产精品三级电影| 亚洲精品在线免费观看视频| 欧美电影一区二区| 色香蕉久久蜜桃| 波多野结衣的一区二区三区| 精品一区二区三区免费| 天堂久久一区二区三区| 亚洲国产一区二区在线播放| 国产精品不卡在线观看| 国产免费久久精品| 久久嫩草精品久久久精品一| 欧美电影免费观看完整版| 91精品福利在线一区二区三区 | 欧美日韩在线精品一区二区三区激情| av网站一区二区三区| 国产精品 日产精品 欧美精品| 麻豆精品视频在线| 日本中文字幕一区| 日本成人在线电影网| 日韩精品每日更新| 亚洲va韩国va欧美va精品| 一区二区三区.www| 亚洲激情一二三区| 亚洲一区免费在线观看| 亚洲高清免费一级二级三级| 亚洲第一久久影院| 婷婷成人激情在线网| 秋霞av亚洲一区二区三| 免费人成网站在线观看欧美高清| 免费视频一区二区| 激情五月婷婷综合网| 国产一区二区三区久久悠悠色av| 国产一区二区在线电影| 丁香六月综合激情| 91丝袜美女网| 欧美日韩黄色影视| 欧美一区二区女人| 久久精品一区二区三区不卡 | 欧美综合欧美视频| 欧美男女性生活在线直播观看| 欧美一区二区久久| 精品国产乱子伦一区| 国产欧美一区二区精品秋霞影院| 国产精品拍天天在线| 亚洲精品免费在线| 日本中文字幕一区二区视频 | 美国毛片一区二区| 国内成人自拍视频| 91丝袜呻吟高潮美腿白嫩在线观看| 色偷偷久久人人79超碰人人澡| 欧美日韩中文字幕一区二区| 精品美女一区二区| 国产欧美一区二区精品忘忧草| 亚洲美女在线一区| 免费成人结看片| 不卡在线观看av| 7777精品伊人久久久大香线蕉完整版 | 中文字幕乱码日本亚洲一区二区 | 午夜久久福利影院| 久久丁香综合五月国产三级网站 | 狠狠色丁香久久婷婷综| 91亚洲精品久久久蜜桃| 欧美一区二区三区成人| 中文字幕亚洲欧美在线不卡| 日本欧美一区二区三区乱码 | 亚洲精品国产无天堂网2021| 欧美a级理论片| av爱爱亚洲一区| 91精品国产色综合久久久蜜香臀| 国产调教视频一区| 天堂久久久久va久久久久| 懂色av噜噜一区二区三区av| 欧美日韩另类国产亚洲欧美一级| 日本一区二区视频在线观看| 天天色 色综合| 99re66热这里只有精品3直播 | 亚洲欧洲日韩一区二区三区| 强制捆绑调教一区二区| 91免费观看在线| 久久婷婷一区二区三区| 亚洲国产中文字幕在线视频综合 | 欧美私人免费视频| 国产清纯美女被跳蛋高潮一区二区久久w| 亚洲国产成人av网| 91在线视频免费91| 国产亚洲午夜高清国产拍精品 | 欧美日韩一区中文字幕| 中文字幕一区不卡| 国产不卡一区视频| 欧美成人欧美edvon| 亚洲地区一二三色| 色视频成人在线观看免| 国产精品理伦片| 国产成人自拍高清视频在线免费播放| 欧美精品在线观看播放| 亚洲精品午夜久久久| 99精品1区2区| 成人免费视频在线观看| 粉嫩av亚洲一区二区图片| www激情久久| 蜜桃91丨九色丨蝌蚪91桃色| 欧美精品粉嫩高潮一区二区| 亚洲美女淫视频| 在线欧美小视频| 亚洲一区二区三区影院| 色综合久久88色综合天天免费| 国产精品久久久99| 成人激情免费视频| 国产精品免费aⅴ片在线观看| 国产最新精品免费| 久久精品视频一区二区| 国产成人午夜电影网| 国产女同互慰高潮91漫画| 国产精品99久久久久久久女警 | 成人午夜激情在线| 国产欧美日韩另类视频免费观看| 国产在线精品免费| 久久久综合网站| 成人免费福利片| |精品福利一区二区三区| 99re8在线精品视频免费播放| 日韩久久一区二区| 91精品1区2区| 午夜国产精品影院在线观看| 91精品国产美女浴室洗澡无遮挡| 秋霞成人午夜伦在线观看| 日韩欧美黄色影院| 国产成a人无v码亚洲福利| 18成人在线视频| 欧美视频在线一区| 麻豆精品在线观看| 国产欧美日韩精品一区| 91视频在线观看免费| 亚洲成人av一区| 欧美大片在线观看一区| 成人午夜大片免费观看| 亚洲综合在线电影| 欧美丰满少妇xxxxx高潮对白| 精品夜夜嗨av一区二区三区| 中国av一区二区三区| 欧美性大战久久| 免费成人av资源网| 国产精品久久免费看| 欧美美女激情18p| 国产福利一区二区三区视频在线 | 正在播放一区二区| 国产成人在线免费观看|