Epstein Files Full PDF

CLICK HERE
Technopedia Center
PMB University Brochure
Faculty of Engineering and Computer Science
S1 Informatics S1 Information Systems S1 Information Technology S1 Computer Engineering S1 Electrical Engineering S1 Civil Engineering

faculty of Economics and Business
S1 Management S1 Accountancy

Faculty of Letters and Educational Sciences
S1 English literature S1 English language education S1 Mathematics education S1 Sports Education
teknopedia

  • Registerasi
  • Brosur UTI
  • Kip Scholarship Information
  • Performance
Flag Counter
  1. World Encyclopedia
  2. Help:HTML in wikitext - Wikipedia
Help:HTML in wikitext - Wikipedia
Page semi-protected
From Wikipedia, the free encyclopedia
Usage of HTML tags with MediaWiki

"WP:HTML" redirects here. For general information about the default markup language on Wikipedia, see Wikipedia:HTML5.
For wikitext equivalents to HTML tags, see Help:Wikitext.
  • Abbreviations
  • Edit summaries
  • Glossary
  • HTML
  • Shortcuts
  • Templates
  • Wikitext
  • Directory
This help page is a how-to guide.
It explains concepts or processes used by the Wikipedia community. It is not one of Wikipedia's policies or guidelines, and may reflect varying levels of consensus.
Shortcuts
  • H:HTMLH:HTML
  • WP:HTMLWP:HTML
Wikitext
  • Cheatsheet
  • All wikitext
  • Sound files
  • Visual files
  • Tables
  • Templates (quick guide)
  • HTML within wikitext
  • Pipe trick
  • v
  • t
  • e

The MediaWiki software, which drives Wikipedia, allows the use of a subset of HTML5 elements, or tags and their attributes, for presentation formatting.[1] However, most HTML functionality can be replicated using equivalent wiki markup or templates. These alternatives are generally preferred within articles because they are often simpler for most editors to use and less intrusive in the editing interface. Wikipedia's Manual of Style recommends when and where these alternatives should be used. (See Help:Wikitext for wikitext equivalents to HTML tags not otherwise discussed below.)

HTML can also be useful outside articles, such as for formatting within templates. For assistance with using Cascading Style Sheets on Wikipedia, see Help:Cascading Style Sheets.

Some tags that resemble HTML are actually MediaWiki parser and extension tags, and so are actually wiki markup. HTML included in pages can be validated for HTML5 compliance by using validation. Note that some elements and attributes supported by MediaWiki and browsers have been deprecated by HTML5 and should no longer be used.

Tutorials

This help page gives only an overview of allowed markup. For further assistance and detailed specifications:

  • HTML5 Introduction at developer.mozilla.org
  • HTML5 Introduction at w3schools.com

Attributes

HTML attributes provide additional information about an element and are always specified in the start tag. They are formatted as a name/value pair like name="value".

Global attributes apply to all tags. Attributes not listed here are not allowed by MediaWiki[1]:

  • class: one or more classifications to which the element belongs. See Wikipedia:Catalogue of CSS classes.
  • dir: text direction— "ltr" (left-to-right), "rtl" (right-to-left) or "auto".
  • id: unique identifier for the element.
  • lang: primary language for the contents of the element per BCP 47.
  • style: applies CSS styling to the contents of the element.
  • title: advisory information associated with the element.

HTML5 microdata attributes apply to all tags:[2]

  • Any attribute beginning with data-
  • itemid
  • itemprop
  • itemref
  • itemscope
  • itemtype

Other tags such as <table> support specific attributes – these are listed in the appropriate section.

Markup Renders as
This is <span style="color:red;">red</span> text.

This is red text.

The MediaWiki Sanitizer.php does some cleanup on attributes. A best practice is to use the proper syntax.

  • Discards attributes not on a whitelist for the given element.
  • Turns broken or invalid entities into plaintext.
  • Double-quotes all attribute values.
  • Attributes without values are given the name as value.
  • Double attributes are discarded.
  • Unsafe style attributes are discarded.
  • Prepends space if there are attributes.

Elements

These HTML elements are supported by the MediaWiki software. This section gives a brief overview of the HTML element, an example, relevant wikimarkup and templates.

Basic

h1, h2, h3, h4, h5, h6

Further information: Help:Section and MOS:HEAD

The <h1>...</h1> through <h6>...</h6> tags are headings for the sections with which they are associated. <h1> is used for the article title. Headings are styled through CSS and added to the page's table of contents.

Markup Renders as
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6

Wikimarkup: surround the text with the appropriate number of equal signs. Headers formatted with wikimarkup add an [edit] link.

Markup Renders as
= Heading 1 =
== Heading 2 ==
=== Heading 3 ===
==== Heading 4 ====
===== Heading 5 =====
====== Heading 6 ======
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6


Templates: {{fake heading}} for use in documentation

p

<p>...</p> tag places content into a separate paragraph.

Markup Renders as
<p>HyperText Markup Language</p><p>HyperText Markup Language</p>

HyperText Markup Language

HyperText Markup Language

Wikimarkup: Separate paragraphs by a single blank line.

Markup Renders as
HyperText Markup Language

HyperText Markup Language

HyperText Markup Language

HyperText Markup Language

<p>...</p> is especially useful in lists, for list items with multiple paragraphs:

Markup Renders as
* <p>This is a paragraph.</p><p>This is another paragraph in the same item.</p>
* This is a different item.
  • This is a paragraph.

    This is another paragraph in the same item.

  • This is a different item.

Note that the closing tag </p> is not strictly necessary for MediaWiki installations that output HTML 5 (such as Wikipedia).

br

Further information: Help:Line-break handling § <br>, and Wikipedia:Don't use line breaks

<br> inserts a line break. See H:BR for the other 4 versions that the MediaWiki software converts to <br /> in the HTML that browsers read.

Markup Renders as
HyperText<br>Markup Language

HyperText
Markup Language

Templates:

  • {{break}} adds multiple line breaks.
  • {{crlf2}} adds a true carriage return and line feed.
  • {{clear}} adds a break with styling to clear floating elements.
  • {{plainlist}} creates an unbulleted list.

hr

Further information: WP:LINE

<hr> or <hr /> represents a paragraph-level thematic break and presents as a horizontal rule.

Markup Renders as
<hr />

Wikimarkup: use ----

Markup Renders as
----


Templates: {{hr}}

Comments

Further information: MOS:COMMENT

<!--...--> formats the enclosed text as a hidden comment.

Markup Renders as
HyperText<!--Markup Language-->

HyperText

Be careful with spacing around comments. Surrounding a comment with blank lines will result in a blank paragraph, perceived as an extra two blank lines:

Markup Renders as
Content line 1

<!-- Comment -->

Content line 2

Content line 1


Content line 2

Formatting

abbr

<abbr>...</abbr> creates a tooltip to define an abbreviation or acronym that is displayed on mouse-over.

Markup Renders as
<abbr title="HyperText Markup Language">HTML</abbr>

HTML

Templates: {{abbr}}

b

Further information: MOS:BOLD

<b>...</b> formats text stylistically offset from other text (bold) without conveying extra importance.

Markup Renders as
<b>HyperText Markup Language</b>

HyperText Markup Language

Wikimarkup: Use ''' to open and close bold text.

Markup Renders as
'''HyperText Markup Language'''

HyperText Markup Language

bdi

<bdi>...</bdi> isolates the content from the surrounding text-direction settings.

Markup Renders as
اليمين إلى اليسارleft to right

اليمين إلى اليسارleft to right

اليمين إلى اليسار<bdi>left to right</bdi>

اليمين إلى اليسارleft to right

Support: Firefox, Chrome

bdo

<bdo>...</bdo> specifies the text direction.

Attributes and values:

  • dir – Specifies the text direction.
    • ltr
    • rtl
Markup Renders as
<bdo dir="rtl">HyperText Markup Language</bdo>

HyperText Markup Language

blockquote

Further information: MOS:QUOTE

<blockquote>...</blockquote> presents text in an offset block.

Markup Renders as
<blockquote>HyperText Markup Language</blockquote>

HyperText Markup Language

Templates: {{quote}}; supports pre-formatted attribution and source parameters. For other specialized quotation templates, see Category:Quotation templates.

cite

<cite>...</cite> contains the title of a work. This is a new definition in HTML5— in the previous XML implementation <cite> was used to contain a citation or a reference to other sources. No formatting is applied when this tag is used.

Markup Renders as
<cite>HyperText Markup Language</cite>

HyperText Markup Language

<cite>...</cite> is generally not used directly in Wikipedia articles, and is often misused; see Wikipedia:HTML 5#cite for replacement instructions.

code

<code>...</code> formats a section of computer code. Styled with CSS through mediawiki.skinning/elements.less as a black monospaced typeface with a grey background (#F8F9FA) and border (#EAECF0).

Markup Renders as[3]
<code>Lorem ipsum dolor sit amet</code>

Lorem ipsum dolor sit amet

<code>Lorem ipsum https://example.com dolor sit amet</code>

Lorem ipsum https://example.com dolor sit amet

<code><nowiki>Lorem ipsum https://example.com dolor sit amet</nowiki></code>

Lorem ipsum https://example.com dolor sit amet

Templates: {{code}} uses <syntaxhighlight>. See the "See also" section at the template page for additional code-markup templates.

See § samp and § kbd on this page for semantic markup of output and input, respectively.

data

<data>...</data> formats a machine-readable version of contents.

Markup Renders as
<data value="978-0764502149">HTML for Dummies</data>

HTML for Dummies

Attributes: value

del

<del>...</del> formats deleted text.

Markup Renders as
<del>HyperText Markup Language</del>

HyperText Markup Language

dfn

<dfn>...</dfn> is used for indicating the defining instance of a term.

Markup Renders as
<dfn>Definition</dfn>

Definition

Templates: {{dfn}}

em

Further information: MOS:ITALIC

<em>...</em> represents a span of text with emphatic stress (i.e. semantic emphasis). In most browsers, it renders as italic.

Markup Renders as
<em>HyperText Markup Language</em>

HyperText Markup Language

Templates: {{em}}

i

Further information: MOS:ITALIC

<i>...</i> represents a span of text offset from its surrounding content without conveying any extra emphasis or importance, and for which the conventional typographic presentation is italic text.

Markup Renders as
<i>HyperText Markup Language</i>

HyperText Markup Language

Wikimarkup: Use '' to open and close italic text.

Markup Renders as
''HyperText Markup Language''

HyperText Markup Language

ins

<ins>...</ins> indicates a range of text that has been added. Styled as underlined text. Used on talk pages to indicate refactored text; see WP:REDACT.

Markup Renders as
<ins>HyperText Markup Language</ins>

HyperText Markup Language

kbd

<kbd>...</kbd> indicates user input such as keyboard input or voice commands (but no gray background as with the template {{kbd}}).

Markup Renders as
Press <kbd>Enter</kbd>

Press Enter

Templates:

  • {{kbd}} applies monospace styling, and a light-grey background to distinguish from code (<code>) and output (<samp> or {{samp}}).
  • {{key press}} renders illustrated keys and keystrokes.

mark

<mark>...</mark> represents a run of text in one document marked or highlighted for reference purposes, due to its relevance in another context. Marked text is formatted with a yellow background by default.

Markup Renders as
<mark>HyperText Markup Language</mark>

HyperText Markup Language

<mark style="background:lightblue;">HyperText Markup Language</mark>

HyperText Markup Language

Support: Not supported by Internet Explorer 8 and below.

pre

<pre>...</pre> element represents a block of preformatted text. In MediaWiki, <pre> is actually a parser tag and not HTML, but the function is the same. It also prevents the parsing of templates.

Markup Renders as[3]
<pre>HyperText Markup Language</pre>
HyperText Markup Language
HTML entities

<pre> parses HTML entities. If you want to escape this, replace & with &amp;, or use <syntaxhighlight lang="text"> instead.

Markup Renders as[3]
<pre>&amp;</pre>
&
<pre>&lt;</pre>
<
<pre>&amp;amp;</pre>
&amp;
<pre>&amp;lt;</pre>
&lt;

Templates:

  • {{pre}} wraps text that overflows the page.

q

<q>...</q> is used to mark a short quotation. There has been very little implementation of this element in Wikipedia yet.

Markup Renders as
<q>HyperText Markup Language</q>

HyperText Markup Language

MOS:QUOTATIONS says Wikipedia should instead use "", {{quote}}, or <blockquote>.

rp, rt, rtc, ruby

Further information: Ruby character

<ruby>...</ruby> marks spans of phrasing content with ruby annotations.

  • <rtc>...</rtc> marks a ruby text container for ruby text components in a ruby annotation
  • <rt>...</rt> marks the ruby text component of a ruby annotation; the ruby text shows in a reduced size over top of the normal characters.
  • <rp>...</rp> is used to provide parentheses around a ruby text component of a ruby annotation, to be shown by user agents that don't support ruby annotations.

Browsers that do not support ruby characters will show the ruby text in normal size, enclosed in parentheses and after the normal content.

Markup Renders as
<ruby>
東<rtc><rp>(</rp><rt>とう</rt><rp>)</rp></rtc>
京<rtc><rp>(</rp><rt>きょう</rt><rp>)</rp></rtc>
</ruby>

東(とう) 京(きょう)

Templates:

  • {{ruby}}
  • {{ruby-ja}} for Japanese
  • {{Ruby-zh-p}} for Chinese pinyin
  • {{Ruby-zh-b}} for Chinese bopomofo

s

<s>...</s> is used to indicate inline content that is no longer accurate or relevant and that has been struck from the page. It is not appropriate when indicating document edits; to mark a span of text as having been removed from a document, use <del>.

Markup Renders as
<s>HyperText Markup Language</s>

HyperText Markup Language

Templates: {{strikethrough}} (for inline content), {{strikethroughdiv}} (for block content)

samp

<samp>...</samp> indicates sample output from a program or computing system. Examples include: output of a program, script, or Wikipedia template; status displays or audio announcements made by an app or device; file system directory listings and samples from them, such as paths and file names.

Markup Renders as
sample output: <samp>HTML</samp>

sample output: HTML

Templates: {{samp}} applies monospace styling, and gives the text in dark grey to distinguish from code (<code>) and input (<kbd> or {{kbd}}).

small

Further information: WP:FONTSIZE

<small>...</small> format small text.

Markup Renders as
<small>HyperText Markup Language</small>

HyperText Markup Language

Templates:

  • {{small}} uses <span style="font-size:85%;">. {{small}} is recommended over <small> since <small>...</small> has a semantic meaning that is for fine print, whereas {{small}} is purely stylistic.

strong

<strong>...</strong> formats a span of text with strong importance or unusual emphasis; in most browsers it renders as boldface. This should generally not be used in Wikipedia articles, per WP:Neutral point of view policy. See MOS:BOLD on use of this element and other boldfacing. Most semantic emphasis, including in quoted material, should be rendered with the <em> element.

Markup Renders as
<strong>HyperText Markup Language</strong>

HyperText Markup Language

Templates: {{strong}}

sub

Further information: WP:SUBSCRIPT

<sub>...</sub> formats a span of text as a subscript.

Markup Renders as
HyperText <sub>Markup Language</sub>

HyperText Markup Language

Templates:

  • {{sub}} (subscript text)
  • {{subsub}} (subscript subscript text)
  • {{sup}} (superscript text)
  • {{su}} (superscript
    subscript
    text)
  • {{sup sub}} (textsup
    sub
    )
  • {{e}} (1.23×104)

sup

Further information: WP:SUPSCRIPT

<sup>...</sup> formats a span of text as a superscript.

Markup Renders as
HyperText <sup>Markup Language</sup>

HyperText Markup Language

Templates:

  • {{sub}} (subscript text)
  • {{subsub}} (subscript subscript text)
  • {{sup}} (superscript text)
  • {{su}} (superscript
    subscript
    text)
  • {{sup sub}} (textsup
    sub
    )
  • {{e}} (1.23×104)

time

<time>...</time> defines either a time (24 hour clock), or a date in the Gregorian calendar, optionally with a time and a time-zone offset.

Markup Renders as
<time>10:00</time>

10:00

Attributes: datetime

Support: Not supported by Internet Explorer 8 and below.

u

Further information: MOS:BADEMPHASIS and MOS:QUOTE

<u>...</u> represents a span of text offset from its surrounding content without conveying any extra emphasis or importance, and for which the conventional typographic presentation is underlining; for example, a span of text in Chinese that is a proper name (a Chinese proper name mark), or span of text that is known to be misspelled.

<u> was presentational element of HTML that was originally used to underline text; this usage was deprecated in HTML4 in favor of the CSS style {text-decoration: underline}.[4] In HTML5, the tag reappeared but its meaning was changed significantly: it now "represents a span of inline text which should be rendered in a way that indicates that it has a non-textual annotation".[4] This facility is intended for example to provide a red wavy line underline to flag spelling errors at input time but which are not to be embedded in any stored file (unlike an emphasis mark, which would be).

Markup Renders as
<u>HyperText Markup Language</u>

HyperText Markup Language

Templates: {{underline}} (which supplies the recommended CSS style)

var

Further information: MOS:ITALIC

<var>...</var> formats text in italics to indicate a variable in a mathematical expression or programming context, or placeholder text that the reader is meant to mentally replace with some other literal value.

Markup Renders as
*<var>E</var>=<var>m</var>c<sup>2</sup> (c is a constant not a variable)
*<code><nowiki>{{</nowiki><var>TemplateName</var>|<var>parameter</var>=<var>value</var><nowiki>}}</nowiki></code>
*If <var>A</var> then <var>B</var>
  • E=mc2 (c is a constant not a variable)
  • {{TemplateName|parameter=value}}
  • If A then B

Templates:

  • {{var}}
  • {{varserif}} formatted in italic serif to differentiate characters

wbr

Further information: Help:Line-break handling § <wbr> and soft hyphens

<wbr> is a word break opportunity; that is, it specifies where it would be OK to add a line-break where a word is too long, or it is perceived that the browser will break a line at the wrong place.

Markup Renders as
Now is the time to become a power editor, by learning HyperText Markup Language

Now is the time to become a power editor, by learning HyperText Markup Language

Now is the time to become a power editor, by learning Hyper<wbr>Text Markup Language

Now is the time to become a power editor, by learning HyperText Markup Language

As the browser window is adjusted narrower, the second example wraps between Hyper and Text.

Lists

Further information: Help:List and MOS:LIST

Do not leave blank lines between items in a list unless there is a reason to do so, since this causes the MediaWiki software to interpret each item as beginning a new list.

dl, dt, dd

<dl>...</dl>, <dt>...</dt> and <dd>...</dd> are used to create a description list (formerly definition list) with terms and descriptions. Terms are displayed in bold and descriptions are indented. Each term must include one or more descriptions.

Markup Renders as
<dl>
<dt>Term</dt>
<dd>Definition 1</dd>
<dd>Definition 2</dd>
</dl>
Term
Definition 1
Definition 2

Wikimarkup: <dt> is created using ; while automatically enclosed in <dl>...</dl>. <dd> is created using : for each value. For a single or first value the : can be placed on the same line after ; where subsequent values must be placed on separate lines.

Markup Renders as
; Term
: Definition 1
: Definition 2
Term
Definition 1
Definition 2

Templates: {{defn}}

ol, ul, li

<ol>...</ol> represents an ordered list; <ul>...</ul> represents an unordered list; <li>...</li> represents a list item within either type of list.

Markup Renders as
<ol>
<li>Item 1</li>
<li>Item 2</li>
</ol>
  1. Item 1
  2. Item 2
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
  • Item 1
  • Item 2

Wikimarkup: use * for items in an unordered list and # for ordered lists.

Markup Renders as
# Item 1
# Item 2

  1. Item 1
  2. Item 2
* Item 1
* Item 2

  • Item 1
  • Item 2

Templates: for a variety of specialized uses, see Category:List formatting and function templates.

Containers

div

Further information: Span and div

<div>...</div> is a generic container for flow content that displays as a block element.

Markup Renders as
HyperText <div>Markup</div> Language
HyperText
Markup
Language

span

Further information: Span and div

<span>...</span> is a container for flow content that displays as an inline element.

Markup Renders as
HyperText <span>Markup</span> Language

HyperText Markup Language

Tables

Further information: Help:Table and MOS:TABLES

table, td, tr

<table>...</table> defines a table.

  • <tr>...</tr> defines a table row.
  • <td>...</td> defines a data cell with contents that may include text, links, images, lists, forms, other tables, etc.
Markup Renders as
<table border=1>
<tr>
<td>data</td>
<td>data</td>
</tr>
</table>
data data

Attributes:

  • <table>:
    Allowed but not recommended: border="" and border="1"
    Allowed but obsolete: border (with a non-empty value different from "1"), align, bgcolor, cellpadding, cellspacing, frame, rules, summary, width[5]
  • <td>: colspan, headers, rowspan
    Allowed but obsolete: abbr, align, axis, bgcolor, scope, height, nowrap, valign, width[5]

th

<th>...</th> defines a table header; styled as centered and bold.

Markup Renders as
<table border="1">
<tr>
<th>Header</th>
<th>Header</th>
</tr>
<tr>
<td>data</td>
<td>data</td>
</tr>
</table>
Header Header
data data

Attributes:

  • <th>: colspan, headers, rowspan, scope
    Allowed but obsolete: abbr, align, axis, bgcolor, height, nowrap, valign, width[5]

caption

<caption>...</caption> adds a caption to a table.

Markup Renders as
<table border=1>
<caption>Caption</caption>
<tr>
<td>data</td>
<td>data</td>
</tr>
</table>
Caption
data data

Attributes:

  • <caption>:
    Allowed but obsolete: align[5]

thead, tfoot, tbody

<thead>, <tfoot> and <tbody> are not supported, but are automatically generated when the page is rendered.

Obsolete/deprecated elements

Main page: Wikipedia:HTML5 § Obsolete elements and attributes

These elements are now obsolete and either deprecated or removed in HTML5, although they are still supported by browsers.[5] Their use should be avoided on Wikipedia. These tags either have an alternate tag or a template that replaces their function with CSS; except for <big>...</big>, the tags are being replaced by editors on pages throughout Wikipedia (see Wikipedia:Linter for more details). See Wikipedia:HTML5 § Obsolete elements and attributes for more details on obsolete HTML parts and their replacements.

big

<big>...</big> (obsolete) was used to render text in a "large" font.

Templates: {{big}} uses CSS.

center

For centering tables, see Help:Table § Centering tables.

<center>...</center> (obsolete) was used to center text elements.

Templates: {{center}} uses CSS.

font

<font>...</font> (obsolete) was used to set the font size, font face and color of text.

Templates: {{font}} uses CSS.

rb

<rb>...</rb> (obsolete) was used to mark base text in a ruby annotation.

For replacements, see: Help:HTML in wikitext#rp, rt, rtc, ruby

strike

<strike>...</strike> (obsolete) formatted strike-through characters; use <s>...</s> or <del>...</del> instead, depending on the context.

tt

<tt>...</tt> (obsolete) formatted text in a fixed-width font. Use <code>, <kbd>, <var>, or <samp> instead, depending on the context.

Templates: {{mono}} uses CSS.

Unsupported elements

These elements are not supported, but have equivalent wiki markup. Attempting to use any element not whitelisted by Sanitizer.php will result in the markup showing as plain text.

a

Further information: Help:Wiki markup § Links and URLs

<a> is used to create links. Use the [[ ]] wikimarkup for internal/intrawiki links and interwiki links, and [ ] for external links.

input

Further information: mw:Extension:InputBox

<input> is used to create forms. The <inputbox> extension tag is used to create a text box with a button.

HTML Tidy

This section is retained only for historical reference.

HTML Tidy is an outdated HTML4 library[vague] that is slated for removal. Tidy parses the MediaWiki output and cleans it up to increase the likelihood that valid HTML4 is rendered. For example, with Tidy enabled, <br>, </br>, <br/>, <br.> all rendered as <br />. Tidy is not enabled for MediaWiki interface pages. Tidy was never perfect and has been known to introduce errors.

Exceptions

In some pages in the MediaWiki namespace, typically the short messages like button labels, HTML is not parsed, and tags will be exposed.

User and sitewide CSS and JavaScript pages are interpreted as if inside a <pre> block. See Help:User style.

Validation

Main page: Help:Markup validation

The MediaWiki software attempts to fix HTML errors, but it does not catch all of them. Where HTML is used, it is helpful to verify it with the W3C Markup Validation Service.

Parser and extension tags

Shortcuts
  • Help:Extension tagHelp:Extension tag
  • Help:Parser tagHelp:Parser tag

For a machine-generated list, see Special:Version#mw-version-parser-extensiontags. It may include tags not documented here.

Parser tags
<gallery>, <includeonly>, <noinclude>, <nowiki>, <onlyinclude>, <pre>
Extension tags
<categorytree>, <charinsert>, <chem> (alias <ce>), <graph>, <hiero>, <imagemap>, <indicator>, <inputbox>, <mapframe>, <maplink>, <math>, <math chem>, <poem>, <ref>, <references>, <score>, <section>, <syntaxhighlight> (alias <source>), <templatedata>, <templatestyles>, <timeline>

See also

  • Help:Wikitext
  • Wikipedia:HTML5

References

  1. ^ a b Allowable elements and attributes are defined in the Sanitizer.php module.
  2. ^ "The microdata model". HTML Living Standard.
  3. ^ a b c For the table cell a white background color was chosen here for a better display of the light gray background.
  4. ^ a b "<u>: The Unarticulated Annotation (Underline) element". mozilla.org. 1 August 2020. Retrieved 9 October 2020.
  5. ^ a b c d e "HTML5: A vocabulary and associated APIs for HTML and XHTML: Obsolete Features". W3C. 31 July 2014.

External links

  • HTML 4.01 specification: elements | attributes
  • HTML 5.2 specification: elements | attributes
  • v
  • t
  • e
Wikipedia directories and indexes
Administration
pages
Protocols
  • Policies
  • Guidelines
  • Manual of Style
Assistance
  • Help directory
    • Menu
  • FAQs
  • Interactive help
  • Reader's index
  • Tips
    • Styletips
  • Tools
The community
  • Portal
  • Discussions
    • Noticeboards
  • Essays
  • Editor's index
  • Departments
    • Maintenance
  • AI resources
  • WikiProjects
MediaWiki
  • Wikitext
    • HTML
    • Templates
Locutions
  • Abbreviations
  • Edit summaries
  • Glossary
  • Shortcuts
Encyclopedia
proper
Types
  • Overviews
  • Outlines
  • Lists
  • Portals
  • Glossaries
  • Categories
  • Indices
Featured, good
  • Featured articles
    • Good articles
  • Featured lists
  • Featured pictures
  • Featured topics
    • Good topics
Topics
  • Current events
  • Reference
  • Culture
  • Geography
  • Health
  • History
  • Math
  • Nature
  • People
  • Philosophy
  • Religion
  • Society
  • Technology
LOC, bios, times
  • Academic disciplines
  • Anniversaries
    • Today
  • Sovereign states and dependent territories
    • Deaths this year
  • Timelines
    • Decades, centuries, and millennia
Indexes
  • A–Z index
  • Categories
  • Dewey Decimal classes
  • Library of Congress Classification
  • Spoken articles
Searching
  • v
  • t
  • e
Wikipedia editor navigation (Search)
  • v
  • t
  • e
Wikipedia key policies and guidelines (?)
  • Five pillars
    • Ignore all rules
Content (?)
P
  • Verifiability
  • No original research
  • Neutral point of view
  • What Wikipedia is not
  • Biographies of living persons
  • Copyright (Copyright violations)
  • Image use
  • Article titles
G
  • Notability
  • Autobiographies
  • Citing sources
  • Reliable sources
    • Medicine
  • Do not include copies of lengthy primary sources
  • Plagiarism
  • Do not create hoaxes
  • Fringe theories
  • Patent nonsense
  • External links
  • Writing articles with large language models
  • LLM-assisted translation
Conduct (?)
P
  • Civility
  • Consensus
  • Harassment
  • Vandalism
  • Ignore all rules
  • No personal attacks
  • Ownership of content
  • Edit warring
  • Dispute resolution
  • Sockpuppetry
  • No legal threats
  • Child protection
  • Paid-contribution disclosure
G
  • Assume good faith
  • Conflict of interest
  • Disruptive editing
  • Do not disrupt Wikipedia to illustrate a point
  • Etiquette
  • Gaming the system
  • Please do not bite the newcomers
  • Courtesy vanishing
  • Responding to threats of harm
  • Talk page guidelines
    • Signatures
Deletion (?)
P
  • Deletion policy
  • Proposed deletion
    • Biographies
  • Speedy deletion
  • Attack page
  • Oversight
  • Revision deletion
Enforcement (?)
P
  • Administrators
  • Banning
  • Blocking
  • Page protection
Editing (?)
P
  • Editing policy
G
  • Article size
    • Summary style
  • Be bold
  • Disambiguation
  • Hatnotes
  • Broad-concept article
  • Understandability
Style
  • Manual of Style
    • Contents
  • Accessibility
  • Dates and numbers
  • Images
  • Layout
  • Lead section
  • Linking
  • Lists
Classification
  • Categories, lists, and navigation templates
  • Categorization
  • Template namespace
Project content (?)
G
  • Project namespace
    • WikiProjects
  • User pages
    • User boxes
  • Shortcuts
  • Subpages
WMF (?)
P
  • Universal Code of Conduct
  • Terms of Use
  • List of policies
  • Friendly space policy
  • Licensing and copyright
  • Privacy policy
  • List of all policies and guidelines
    • P: List of policies
    • G: List of guidelines
  • Summaries of values and principles
  • v
  • t
  • e
Manual of Style
  • Overview
  • Contents
  • Tips
Content
  • Accessibility
  • Biography
  • Disambiguation pages
    • Organizing by subject area
  • Gender identity
  • Hidden text
  • Infoboxes
  • Linking
  • Self-references
  • Words to watch
Formatting
  • Abbreviations
  • Capitalization
  • Dates and numbers
  • Pronunciation
  • Spelling
  • Superscripts and subscripts
  • Text formatting
  • Titles of works
Images
  • Captions
  • Image placement
  • Icons
  • Images
Layout
  • Layout
  • Lead section
  • Tables
  • Trivia sections
Lists
  • Lists
  • Lists of works
  • Road junctions
  • Stand-alone lists
By topic area
Arts
  • Anime and manga
  • Comics
  • Film
  • Lyrics and poetry
  • Novels
  • Television
  • Video games
  • Visual arts
  • Writing about fiction
  • See also: WikiProject style advice
Music
  • Music
  • Music samples
  • Record charts
  • Stringed instruments
  • See also: WikiProject style advice
History
  • Blazons
  • Military history
  • See also: WikiProject style advice
Legal and cultural
  • Legal
  • Trademarks
  • See also: WikiProject style advice
Regional
  • Specific naming conventions
  • Canada
  • China (and Chinese)
  • France (and French)
  • Hawaii
  • India
  • Indonesia
  • Ireland
  • Japan
  • Korea
  • Malaysia
  • Pakistan
  • Philippines
  • Poland
  • Singapore
  • See also: WikiProject style advice
Religion and education
  • Islam
  • Latter Day Saints
  • See also: WikiProject style advice
Science and technology
  • Mathematics
  • Medicine
  • Chemistry
    • Compound classes
    • Chemicals
    • References and external links
    • Safety
    • Structure drawing
  • Computer science
  • Taxonomy
  • See also: WikiProject style advice
Sports
  • Cue sports
    • Snooker
  • See also: WikiProject style advice
Related guidelines
  • Article size
  • Article titles
  • Categories, lists, and navigation templates
  • Categorization
  • Hatnotes
  • Subpages
  • Understandability
Search
  • Category
  • v
  • t
  • e
Wikipedia accounts and governance
Unregistered users
  • Why create an account?
  • Create an account
  • Request an account
  • Unregistered editors are human too
  • IP addresses are not people
  • IP hopper
  • Temporary accounts
Registered users
  • New account
  • Logging in
    • Reset passwords
  • Username policy
    • Changing username
    • Usernames for administrator attention
  • Unified login or SUL
  • Alternate account
Account security
  • Password strength requirements
  • User account security
  • Personal security practices
  • Two-factor authentication
    • 2FA for AWB
  • Committed identity
  • On privacy, confidentiality and discretion
  • Compromised accounts
  • How to not get outed
Blocks, bans, sanctions,
global actions
  • Blocking policy
    • FAQ
    • Admin's guide
    • Tools
    • Autoblock
  • Appealing a block
    • Guide to appealing blocks
    • UTRS Unblock Ticket Request System
    • Unblock Wizard
  • Blocking IP addresses
    • Range blocks
    • IPv6
    • Open proxies
  • Banning policy
    • ArbCom appeals
  • Sanctions
    • Personal sanctions
    • General sanctions
    • Contentious topics and Log
    • Essay
  • Indef ≠ infinite
  • Long-term abuse
  • Standard offer
  • Global actions
Related to accounts
  • Sockpuppetry
  • Single-purpose account
  • Sleeper account
  • Spam-only account
  • Vandalism-only account
  • Wikibreak
    • Enforcer
  • Retiring
    • Courtesy vanishing
  • Clean start
    • Quiet return
  • Account deletion
User groups
and global user groups
  • Requests for permissions
    • Admin instructions
    • Admin guide
  • Account creator
    • PERM
  • (Auto) confirmed
    • PERM
  • Autopatrolled
    • PERM
  • AutoWikiBrowser
    • PERM
  • Bot
    • Request
  • Edit filter helper
    • Request
  • Event coordinator
    • PERM
  • Extended confirmed
    • PERM
  • File mover
    • PERM
  • IP block exempt
    • Request
  • Mass message sender
    • PERM
  • New page reviewer
    • PERM
  • Page mover
    • PERM
  • Pending changes reviewer
    • PERM
  • Rollback
    • PERM
  • Template editor
    • PERM
  • Temporary account IP viewer
    • PERM
  • Global rights policy
    • Volunteer Response Team
Advanced user groups
  • Administrator
    • RfA
  • Bureaucrat
    • RfB
  • CheckUser and Oversight
    • Request
  • Edit filter manager
    • Request
  • Interface administrator
    • Request
  • Founder
  • Importer
  • Researcher
Committees and related
  • Arbitration Committee
  • Bot approvals group
  • Functionaries
  • Clerks
    • SPI clerks
    • ArbCom clerks
Governance
  • Administration
    • FAQ
  • AI
  • Formal organization
  • Editorial oversight and control
  • Quality control
  • Wikimedia Foundation
    • Board
    • Founder's seat
    • Meta-Wiki
    • Proposals
  • WikiProjects
  • Elections
  • Policies and guidelines
  • Petitions
  • Noticeboards
  • Consensus
  • Dispute resolution
  • Reforms
  • v
  • t
  • e
Wikipedia community
For a listing of current collaborations, tasks, and news, see the Community portal.
For a listing of ongoing discussions and current requests, see the Dashboard.
General community
topics
  • Administration
  • News
    • The Signpost
    • Goings-on
    • In the media
  • Meetups
  • Mailing lists
  • Wikipedians
  • Statistics
  • The Wikipedia Library
  • Centralized discussion
  • Village pump
    • Idea lab
    • Policy
    • Proposals
    • Technical
    • Miscellaneous
    • WMF
  • Holidays
  • Bots
Contents and grading
  • Requested articles
  • Most-wanted articles
  • Images needing articles
  • Articles needing images
  • Articles for creation
    • WP:AFC/R
    • WP:AFC/C
    • Creating articles
    • Help
  • Vital articles
  • Articles for improvement
  • Peer review
  • Good article nominations
  • Featured article candidates
    • Lists
    • Pictures
    • Topics
  • Article translation
    • Pages
  • Main Page
    • Errors
WikiProjects
and collaborations
  • Directory
  • Culture and the arts
  • Geographical
  • History and society
  • Science, technology and engineering
  • Wikipedia assistance and tasks
  • Patrols
    • Recent changes
  • Counter-Vandalism Unit
  • Accessibility
  • Organizations category
Awards and feedback
  • Reward board
  • Contests
  • A nice cup of tea and a sit down
  • Charitableness
  • WikiLove
    • Compliment before criticism
    • Kindness Campaign
  • Thanks!
Maintenance tasks
  • Task Center
    • Open tasks
  • Backlog
    • Category
    • Admin category
  • Edit requests
    • Category
  • Database reports
  • Category tracker
  • Dusty articles
  • Special pages
    • New pages
    • Recent changes
  • Controversial issues
Administrators
and noticeboards
  • Administrators' noticeboard
    • Incidents
    • Edit warring
    • Vandalism
  • Admin dashboard
  • Admin requests
    • Closure
    • Page protection
    • User permissions
    • Sockpuppets
    • Open proxies
  • Revision deletion
  • Oversight
    • Request
  • Usernames
    • Changing
    • Title blacklist
  • OTRS
  • Bureaucrats'
    • Requests for adminship and bureaucratship
  • Arbitration Committee
    • Requests
    • Enforcement
Content dispute
resolution
  • Requests for comment
  • Third opinion
  • Dispute resolution noticeboard
    • Biographies of living persons
    • Conflict of interest
    • External links
    • Fringe theories
    • Neutral point of view
    • No original research
    • Reliable sources
Other noticeboards
and assistance
  • Regional notice boards
  • Requests for help
    • Category
  • Asking questions
    • Teahouse
    • Help desk
    • Reference desk
    • Adopt-a-user
  • Copyright assistance
    • Copyright investigations
    • Text problems
    • Media questions
  • Resource requests
  • Mergers
    • History mergers
  • Moves
    • Page importation
  • Spam
    • Blacklist
    • Whitelist
  • Bots
  • Education
  • General sanctions
  • Editor sanctions
  • Long-term abuse
Deletion
discussions
  • Guide
    • Admin
  • Today
  • Articles
  • Templates
  • Files
  • Categories
  • Redirects
  • Miscellany
  • Speedy
  • Proposed
    • BLP
  • Review
    • Undeletion
  • Arguments to avoid
  • Arguments to make
  • Article Rescue
Elections and voting
  • Requests for comment (meta)
  • Wikimedia Foundation elections
  • WP Democracy
    • Milestones
Directories, indexes,
and summaries
  • Departments
  • Edit summary legend
  • Editor's index
  • Essays
  • FAQs
  • Glossary
    • Abbreviations
  • Help
  • Manual of Style
    • Simplified
  • Rules
    • Five pillars
    • Policies
    • Guidelines
  • Shortcuts
  • Templates
    • Citation templates
  • Tips
    • Today
  • Tools
  • Wiki markup
  • Media
  • Category
  • Templates
  • v
  • t
  • e
Wikipedia essays (?)
Building, editing, and deletion
Philosophy
  • Articles are more important than policy
  • Articles must be written
  • All Five Pillars are equally important
  • Avoid vague introductions
  • Civil POV pushing
  • Cohesion
  • Competence is required
  • Concede lost arguments
  • Dissent is not disloyalty
  • Don't lie
  • Don't search for objections
  • Duty to comply
  • Editing Wikipedia is like visiting a foreign country
  • Editors will sometimes be wrong
  • Eight simple rules for editing our encyclopedia
  • Explanationism
  • External criticism of Wikipedia
  • Five pillars
  • Here to build an encyclopedia
  • Large language models
  • Leave it to the experienced
  • Levels of competence
  • Levels of consensus
  • Most ideas are bad
  • Need
  • Not broken is ugly
  • Not editing because of Wikipedia restriction
  • Not every article can be a Featured Article
  • The one question
  • Oversimplification
  • Paradoxes
  • Paraphrasing
  • POV and OR from editors, sources, and fields
  • Process is important
  • Product, process, policy
  • Purpose
  • Reasonability rule
  • Systemic bias
  • There is no seniority
  • Ten Simple Rules for Editing Wikipedia
  • Tendentious editing
  • The role of policies in collaborative anarchy
  • The rules are principles
  • Trifecta
  • We are absolutely here to right great wrongs
  • Wikipedia in brief
  • Wikipedia is an encyclopedia
  • Wikipedia is a community
  • Wikipedia is not RationalWiki
Article construction
  • 100K featured articles
  • Abandoned stubs
  • Acronym overkill
  • Adding images improves the encyclopedia
  • Advanced text formatting
  • Akin's Laws of Article Writing
  • Alternatives to the "Expand" template
  • Amnesia test
  • A navbox on every page
  • An unfinished house is a real problem
  • Archive your sources
  • Article revisions
  • Articles have a half-life
  • Autosizing images
  • Avoid mission statements
  • Be neutral in form
  • Beef up that first revision
  • Blind men and an elephant
  • BOLD, revert, discuss cycle
  • Build content to endure
  • Cherrypicking
  • Chesterton's fence
  • Children's lit, adult new readers, & large-print books
  • Citation overkill
  • Citation underkill
  • Common-style fallacy
  • Concept cloud
  • Creating controversial content
  • Criticisms of society may be consistent with NPOV and reliability
  • Dictionaries as sources
  • Don't cite Wikipedia on Wikipedia
  • Don't demolish the house while it's still being built
  • Don't get hung up on minor details
  • Don't hope the house will build itself
  • Don't panic
  • Don't "teach the controversy"
  • Editing on mobile devices
  • Editors are not mindreaders
  • Encourage the newcomers
  • Endorsements (commercial)
  • Featured articles may have problems
  • Formatting bilateral relations articles
  • Formatting bilateral relations templates
  • Fruit of the poisonous tree
  • Give an article a chance
  • Gotfryd custom
  • How to write a featured article
  • Identifying and using independent sources
    • History sources
    • Law sources
    • Primary sources
    • Science sources
    • Style guides
    • Tertiary sources
  • Ignore STRONGNAT for date formats
  • Introduction to structurism
  • Link rot
  • Mine a source
  • Merge Test
  • Minors and persons judged incompetent
  • "Murder of" articles
  • Not every story/event/disaster needs a biography
  • Not everything needs a navbox
  • Not everything needs a template
  • Nothing is in stone
  • Obtain peer review comments
  • Organizing disambiguation pages by subject area
  • Permastub
  • Potential, not just current state
  • Presentism
  • Principle of Some Astonishment
  • The problem with elegant variation
  • Pro and con lists
  • Printability
  • Publicists
  • Put a little effort into it
  • Restoring part of a reverted edit
  • Robotic editing
  • Sham consensus
  • Source your plot summaries
  • Specialized-style fallacy
  • Stublet
  • Stub Makers
  • Run an edit-a-thon
  • Temporary versions of articles
  • Tertiary-source fallacy
  • There are no shortcuts to neutrality
  • There is no deadline
  • There is a deadline
  • The deadline is now
  • Try not to leave it a stub
  • What is a reliable source
  • Understanding Wikipedia's content standards
  • Walled garden
  • What an article should not include
  • Wikipedia is a work in progress
  • Wikipedia is not being written in an organized fashion
  • The world will not end tomorrow
  • Write the article first
  • Writing better articles
Writing article content
  • Avoid thread mode
  • Copyediting reception sections
  • Coup
  • Don't throw more litter onto the pile
  • Gender-neutral language
  • Myth vs fiction
  • Proseline
  • Reading in a flow state
  • Turning biology research into a Wikipedia article
  • Use our own words
  • We shouldn't be able to figure out your opinions
  • Write the article first
  • Writing about women
  • Writing better articles
Removing or
deleting content
  • Adjectives in your recommendations
  • AfD is not a war zone
  • Arguments to avoid in deletion discussions
  • Arguments to avoid in deletion reviews
  • Arguments to avoid in image deletion discussions
  • Arguments to make in deletion discussions
  • Avoid repeated arguments
  • Before commenting in a deletion discussion
  • But there must be sources!
  • Confusing arguments mean nothing
  • Content removal
  • Counting and sorting are not original research
  • Delete or merge
  • Delete the junk
  • Deletion is not cleanup
  • Does deletion help?
  • Don't attack the nominator
  • Don't confuse stub status with non-notability
  • Don't overuse shortcuts to policy and guidelines to win your argument
  • Emptying categories out of process
  • Follow the leader
  • How the presumption of notability works
  • How to save an article nominated for deletion
  • I just don't like it
  • Identifying blatant advertising
  • Identifying test edits
  • Immunity
  • Keep it concise
  • Liar liar pants on fire
  • No Encyclopedic Use
  • Notability is not everything
  • Nothing
  • Nothing is clear
  • Overzealous deletion
  • Relisting can be abusive
  • Relist bias
  • The Heymann Standard
  • Unopposed AFD discussion
  • Wikipedia is not Whack-A-Mole
  • Why was the page I created deleted?
  • What to do if your article gets tagged for speedy deletion
  • When in doubt, hide it in the woodwork
  • Zombie page
Civility
The basics
  • Accepting other users
  • Apology
  • Autistic editors
  • Being right isn't enough
  • Contributing to complicated discussions
  • Divisiveness
  • Don't retaliate
  • Editors' pronouns
  • Edit at your own pace
  • Encouraging the newcomers
  • Enjoy yourself
  • Expect no thanks
  • How to be civil
  • Maintaining a friendly space
  • Negotiation
  • Obsessive–compulsive disorder editors
  • Please say please
  • Relationships with academic editors
  • Thank you
  • Too long; didn't read
  • Truce
  • Unblock perspectives
  • We are all Wikipedians here
  • You have a right to remain silent
Philosophy
  • A thank you never hurts
  • A weak personal attack is still wrong
  • Advice for hotheads
  • An uncivil environment is a poor environment
  • Be the glue
  • Beware of the tigers!
  • Civility warnings
  • Deletion as revenge
  • Duty to comply
  • Failure
  • Forgive and forget
  • It's not the end of the world
  • Nobody cares
  • Most people who disagree with you on content are not vandals
  • On Wikipedia no one knows you're a dog
  • Old-fashioned Wikipedian values
  • Profanity, civility, and discussions
  • Revert notification opt-out
  • Shadowless Fists of Death!
  • Staying cool when the editing gets hot
  • The grey zone
  • The last word
  • There is no Divine Right of Editors
  • Most ideas are bad
  • Nothing is clear
  • Reader
  • The rules of polite discourse
  • There is no common sense
  • Two wrongs don't make a right
  • Wikipedia clichés
  • Wikipedia is not about winning
  • Wikipedia should not be a monopoly
  • Writing for the opponent
Dos
  • Assume good faith
  • Assume the assumption of good faith
  • Assume no clue
  • Avoid personal remarks
  • Avoid the word "vandal"
  • Be excellent to one another
  • Be pragmatic
  • Beyond civility
  • Call a spade a spade
  • Candor
  • Deny recognition
  • Desist
  • Discussing cruft
  • Drop the stick and back slowly away from the horse carcass
  • Encourage full discussions
  • Get over it
  • How to lose
  • Imagine others complexly
  • Just drop it
  • Keep it concise
  • Keep it down to earth
  • Mind your own business
  • Say "MOBY"
  • Mutual withdrawal
  • Read before commenting
  • Read the room
  • Settle the process first
  • You can search, too
Don'ts
  • Wikipedia:Because I can
  • Civil POV pushing
  • Cyberbullying
  • Don't accuse someone of a personal attack for accusing of a personal attack
  • Don't be a fanatic
  • Don't be a jerk
  • Don't be an ostrich
  • Don't be ashamed
  • Don't be a WikiBigot
  • Don't be high-maintenance
  • Don't be inconsiderate
  • Don't be obnoxious
  • Don't be prejudiced
  • Don't be rude
  • Don't be the Fun Police
  • Don't bludgeon the process
  • Don't call a spade a spade
  • Don't call people by their real name
  • Don't call the kettle black
  • Don't call things cruft
  • Don't come down like a ton of bricks
  • Don't cry COI
  • Don't demand that editors solve the problems they identify
  • Don't eat the troll's food
  • Don't fight fire with fire
  • Don't give a fuck
  • Don't help too much
  • Don't ignore community consensus
  • Don't knit beside the guillotine
  • Don't make a smarmy valediction part of your signature
  • Don't remind others of past misdeeds
  • Don't shout
  • Don't spite your face
  • Don't take the bait
  • Don't template the regulars
  • Don't throw your toys out of the pram
  • Do not insult the vandals
  • Griefing
  • Hate is disruptive
  • Nationalist editing
  • No angry mastodons
    • just madmen
  • No ableism
  • No Nazis
  • No racists
  • No Confederates
  • No queerphobia
  • No, you can't have a pony
  • Passive aggression
  • POV railroad
  • Superhatting
  • There are no oracles
  • There's no need to guess someone's preferred pronouns
  • You can't squeeze blood from a turnip
  • UPPERCASE
WikiRelations
  • WikiBullying
  • WikiCrime
  • WikiHarassment
  • WikiHate
  • WikiLawyering
  • WikiLove
  • WikiPeace
Neutrality
  • Academic bias
  • Activist
  • Advocacy
  • Avoid thread mode
  • Be neutral in form
  • Blind men and an elephant
  • Cherrypicking
  • Civil POV pushing
  • Coatrack
  • Controversial articles
  • Creating controversial content
  • Criticisms of society may be consistent with NPOV and reliability
  • Criticism
  • Describing points of view
  • Don't "teach the controversy"
  • Endorsements
  • Let the reader decide
  • Inaccuracy
  • Myth vs fiction
  • NPOV dispute
  • Neutral and proportionate point of view
  • Not Wikipedia's fault
  • POV and OR from editors, sources, and fields
  • Partisans
  • Partisanship
  • Presentism
  • Pro and con lists
  • Systemic bias
  • Tendentious editing
  • There are no shortcuts to neutrality
  • Wikipedia:Truth
  • We are absolutely here to right great wrongs
  • We shouldn't be able to figure out your opinions
  • What is fringe?
  • Why Wikipedia cannot claim the Earth is not flat
  • Wikipedia is not RationalWiki
  • Yes, it is promotion
Notability
  • Advanced source searching
  • All high schools can be notable
  • Alternative outlets
  • Arguments to avoid in deletion discussions
  • Articles with a single source
  • Avoid template creep
  • Bare notability
  • Big events make key participants notable
  • Businesses with a single location
  • But it's true!
  • Common sourcing mistakes
  • Clones
  • Coatrack
  • Discriminate vs indiscriminate information
  • Drafts are not checked for notability or sanity
  • Every snowflake is unique
  • Existence ≠ Notability
  • Existence does not prove notability
  • Extracting the meaning of significant coverage
  • Google searches and numbers
  • How the presumption of notability works
  • High schools
  • Historical/Policy/Notability/Arguments
  • Inclusion is not an indicator of notability
  • Independent sources
  • Inherent notability
  • Insignificant
  • Just because BFDI has an article doesn't mean you can add fancruft about it
  • Masking the lack of notability
  • Make stubs
  • Minimum coverage
  • News coverage does not decrease notability
  • No amount of editing can overcome a lack of notability
  • No one cares about your garage band
  • No one really cares
  • Notability and tornadoes
  • Notability cannot be purchased
  • Notability comparison test
  • Notability is not everything
  • Notability is not a level playing field
  • Notability is not a matter of opinion
  • Notability is not relevance or reliability
  • Notability means impact
  • Notabilitymandering
  • Not all Vocaloid songs deserve their own article
  • Not every single thing Donald Trump does deserves an article
  • Obscurity ≠ Lack of notability
  • Offline sources
  • One sentence does not an article make
  • Other stuff exists
  • Overreliance upon Google
  • Perennial websites
  • Popularity ≠ Notability
  • Read the source
  • Red flags of non-notability
  • Reducing consensus to an algorithm
  • Run-of-the-mill
  • Solutions are mixtures and nothing else
  • Significance is not a formula
  • Source content comes first!
  • Sources must be out-of-universe
  • Subjective importance
  • Third-party sources
  • Trivial mentions
  • Video links
  • Vanispamcruftisement
  • What BLP1E is not
  • What is and is not routine coverage
  • What notability is not
  • What to include
  • Why was BFDI not on Wikipedia?
  • Wikipedia is not Crunchbase
  • Wikipedia is not here to tell the world about your noble cause
  • Wikipedia is not the place to post your résumé
  • Two prongs of merit
Humorous
  • Adminitis
  • Ain't no rules says a dog can't play basketball
  • Akin's Laws of Article Writing
  • Alternatives to edit warring
  • ANI flu
  • Anti-Wikipedian
  • Anti-Wikipedianism
  • Articlecountitis
  • Asshole John rule
  • Assume bad faith
  • Assume faith
  • Assume good wraith
  • Assume stupidity
  • Assume that everyone's assuming good faith, assuming that you are assuming good faith
  • Avoid using the preview button
  • Avoid using wikilinks
  • Bad Jokes and Other Deleted Nonsense
  • Barnstaritis
  • Before they were notable
  • Be the fun police
  • BOLD, revert, revert, revert cycle
  • Boston Tea Party
  • Butterfly effect
  • CaPiTaLiZaTiOn MuCh?
  • Case against LLM-generated articles
  • Complete bollocks
  • Counting forks
  • Counting juntas
  • Crap
  • Delete the main page
  • Diffusing conflict
  • Don't stuff beans up your nose
  • Don't-give-a-fuckism
  • Don't abbreviate "Wikipedia" as "Wiki"!
  • Don't delete the main page
  • Editcountitis
  • Edits Per Day
  • Editsummarisis
  • Editing under the influence
  • Embrace Stop Signs
  • Emerson
  • Fart
  • Five Fs of Wikipedia
  • Seven Ages of Editor, by Will E. Spear-Shake
  • Go ahead, vandalize
  • How many Wikipedians does it take to change a lightbulb?
  • How to get away with UPE
  • How to put up a straight pole by pushing it at an angle
  • How to vandalize correctly
  • How to win a citation war
  • If you have a pulse
  • Ignore all essays
  • Ignore all user warnings
  • Ignore every single rule
  • Is that even an essay?
  • Keep beating the horse
  • List of really, really, really stupid article ideas that you really, really, really should not create
  • Mess with the templates
  • My local pond
  • Newcomers are delicious, so go ahead and bite them
  • Legal vandalism
  • List of jokes about Wikipedia
  • LTTAUTMAOK
  • No climbing the Reichstag dressed as Spider-Man
  • No episcopal threats
  • No one cares about your garage band
  • No one really cares
  • No, really
  • No self attacks
  • Notability is not eternal
  • Oops Defense
  • Play the game
  • Please be a giant dick, so we can ban you
  • Please bite the newbies
  • Please do not murder the newcomers
  • Pledge of Tranquility
  • Project S.C.R.A.M.
  • R-e-s-p-e-c-t
  • Requests for medication
  • Requirements for adminship
  • Rouge admin
  • Rouge editor
  • Sarcasm is really helpful
  • Sausages for tasting
  • Spaling Muich?
  • Template madness
  • The Night Before Wikimas
  • The first rule of Wikipedia
  • The Five Pillars of Untruth
  • Things that should not be surprising
  • The WikiBible
  • Watchlistitis
  • We are deletionist!
  • Why is BFDI on Wikipedia?
  • Why you shouldn't write articles with ChatGPT, according to ChatGPT
  • Wikipedia is an MMORPG
  • WTF? OMG! TMD TLA. ARG!
  • Yes, falsely
  • Yes legal threats
  • Yes personal attacks
  • You don't have to be mad to work here, but
  • You should not write meaningless lists
About
About essays
  • Essay guide
  • Value of essays
  • Difference between policies, guidelines and essays
  • Don't cite essays as if they were policy
  • Avoid writing redundant essays
  • Finding an essay
  • Quote your own essay
Policies and guidelines
  • About policies and guidelines
    • Policies
    • Guidelines
  • How to contribute to Wikipedia guidance
  • Policy writing is hard
Essay search
  • v
  • t
  • e
Wikipedia help pages
  • Visit the Teahouse or the Help desk for an interactive Q & A forum.

  • FAQs (?)
  • Reference desks (?)
  • Noticeboards (?)
  • Cheatsheet (?)
  • Directories (?)
  • Village pumps (?)
About Wikipedia (?)
  • Administration
    • Purpose
    • Principles
  • Policies and guidelines
  • What Wikipedia is not
  • Disclaimer (parental advice)
  • Making requests
  • Who writes Wikipedia?
Help for readers (?)
  • FAQ
  • Books
  • Copyright
  • Glossary
  • Mobile access
  • Navigation
  • Other languages
  • Searching
  • Students
  • Viewing media
Contributing
to Wikipedia
 (?)
  • Advice for young editors
  • Avoiding common mistakes
  • Etiquette
  • Simplified Manual of Style
  • Simplified rule-set
    • "Ignore all rules"
    • "The rules are principles"
  • Style-tips
  • Tip of the day
  • Your first article (article wizard)
Getting started (?)
  • Why create an account?
  • Introductions by topic
  • Graphics tutorials
    • Picture tutorial
    • IRC (live chat) tutorial
  • VisualEditor user guide
Dos and don'ts (?)
  • Accessibility
  • Biographies
  • Biographies (living)
  • Categorization
  • Consensus
  • Discussions
  • Disambiguation
  • Images
  • Leads
  • Links
  • Lists
  • References
  • Tables
  • Titles (of articles)
How-to pages and
information pages (?)
  • Appealing blocks
  • Article deletion
  • Categories
  • Citations/references
    • Referencing for beginners
    • Citation Style 1
    • Cite errors
    • References and page numbers
  • Convert
  • Diff
  • Editing
    • Minor edit
    • toolbar
    • edit conflict
  • Find sources
  • Files
  • Footnotes
  • Image deletion
  • Infoboxes
  • Linking (link color)
  • Logging in
  • Merging
  • New page review
  • Page name
    • Renaming pages
  • Redirect
  • Passwords
    • Email confirmation
  • Reverting
    • Simple vandalism cleanup
  • Talk pages (archiving
  • simple archiving)
  • User contributions
  • WP search protocol
Coding (?)
  • Wiki markup
  • Barcharts
  • Calculations
  • Characters
  • Columns
  • Elevation
  • Hidden text
  • HTML
  • Lists
  • Magic words
  • Music symbols
  • Sections
  • Sounds
  • Tables
  • Templates
  • Transclusion
  • URL
  • Visual files
Directories (?)
  • Abbreviations
  • AI
  • Departments
  • Editor's index
  • Essays
  • FAQs
  • Glossary
  • Guidelines
  • Manual of Style
  • Policies
  • Tasks
  • Tips
  • Tools
Missing Manual
Ask for help on your talk page (?)
  • v
  • t
  • e
Wikipedia referencing
Policies and guidelines
  • Verifiability
  • No original research
  • Biographies of living persons
  • Reliable sources
    • Medicine
  • Citing sources
  • Scientific citations
General advice
  • Citation needed
  • Combining sources
  • Offline sources
  • Referencing styles
Citing sources
  • Citation Style 1
  • Citation Style 2
  • Bluebook
  • Comics
  • Citation templates
Inline citations
  • Footnotes
  • Punctuation and footnotes
  • Shortened footnotes
  • Nesting footnotes
Help for beginners
  • Reference-tags
  • Citations quick reference
  • Introduction to referencing
  • Referencing with citation templates
  • Referencing without using templates
  • Referencing dos and don'ts
  • Citing Wikipedia
Advanced help
  • Cite link labels
  • Cite errors
  • Citation merging (bundling)
  • Cite messages
  • Converting between references formats
  • Reference display customization
  • References and page numbers
  • Guidance on source reviewing at FAC
  • Cite extension documentation
Footnote templates
  • Citation Style documentation
  • Multiple references
  • {{Reflist}}
  • {{Refbegin}}
Find references
  • How to find sources
  • Bibliographies
  • Wikipedia Library
  • Resource Exchange
  • Reference Desk
  • Book Sources
  • Free newspaper sources
Citation tools
(External links)
  • Citer
  • Citation bot
  • MakeRef
  • Refill
  • WayBack
  • OABot
  • v
  • t
  • e
Wikipedia technical help
Get personal technical help at the Teahouse, help desk, village pump (technical), talk pages, or IRC.
General
technical help
  • Bypass cache
  • Keyboard shortcuts
  • Editing
    • CharInsert
    • Edit conflict
    • Edit toolbar
    • Reverting
  • How to create a page
  • IRC
    • Tutorial
  • Mobile access
  • Multilingual support
  • Page history
  • Page information
  • Page name
    • Help
  • Printing
  • Software notices
    • Editnotice
  • Special characters
    • Entering
  • User access levels
  • VisualEditor
    • Help
Special
page
-related
  • Special page help
  • AllPages
  • Edit filter
  • Emailing users
  • Logging in
    • Reset passwords
  • Logs
  • Moving a page
    • History merging
    • Non-admin and admin-only page moves
  • Notifications/Echo
    • FAQ
  • Page Curation
  • Page import
  • Pending changes
  • Random pages
  • Recent changes
  • Related changes
  • Searching
    • Linksearch
  • Tags
  • User contributions
  • Watchlist
  • What links here
Wikitext
  • Wikitext
    • Cheatsheet
  • Columns
  • Line-break handling
  • Lists
  • Magic words
    • For beginners
    • Conditional expressions
    • Switch parser function
    • Time function
  • Redirects
  • Sections and TOCs
  • Tables
    • Introduction
    • Basics
    • Advanced table formatting
    • Collapsing
    • Conditional tables
    • Sortable tables
  • Using colours
Links and diffs
  • Links
    • Interlanguage
    • Interwiki
    • Permanent
  • Diffs
    • Simplest diff guide
    • Simple diff and link guide
    • Complete diff and link guide
  • Colon trick
  • Link color
  • Pipe trick
  • URLs
Media files: images,
videos and sounds
  • Media help
  • Files
    • Creation and usage
    • Moving files to Commons
  • Images
    • Introduction to images
    • Picture tutorial
    • Preparing images for upload
    • Uploading images
    • Options to hide an image
    • Extended image syntax
    • SVG help
  • Gallery tag
  • Graphics tutorials
    • Basic bitmap image editing
    • How to improve image quality
    • Graphics Lab resources
  • Sound file markup
  • Visual file markup
Other graphics
  • Family trees
  • Graphs and charts
    • How to create
    • Barcharts
    • To scale charts
  • Math formulas
    • Math symbols
  • Musical scores
    • Musical symbols
  • Timeline
    • EasyTimeline syntax
  • WikiHiero syntax
Templates and
Lua modules
  • Templates
  • Advanced template coding
  • Template documentation
  • Template index
  • Template limits
  • Template sandbox and test cases
  • Citation templates
  • Lua help
  • Lua project
    • Resources
    • To do
  • Substitution
  • Purge
    • Job queue
  • Transclusion
    • Labeled section
    • Costs and benefits
  • Guide to Scribbling
Data structure
  • Namespaces
  • Main/Article
  • Category
  • Draft
  • File
    • File description page
  • Help
  • Portal
  • Project/Wikipedia
  • Talk
    • Archiving
      • Simple
  • Template
  • User
    • User page design
  • MediaWiki
    • Bug reports and feature requests
    • TimedMediaHandler extension
  • Module
  • Special
HTML and CSS
  • Cascading Style Sheets
  • HTML in wikitext
  • Catalogue of CSS classes
  • Common.js and common.css
  • Classes in microformats
  • Markup validation
  • Span tags
  • Useful styles
Customisation
and tools
  • Preferences
  • Gadgets
  • Skins
  • Citation tools
  • Cleaning up vandalism tools
  • Customizing watchlists
    • Hide pages
  • IRC Scripts
  • User scripts
    • Guide
    • List
    • Techniques
    • Safe mode
  • User style
  • Tools
    • Alternative browsing
    • Browser tools
    • Editing tools
    • Navigation shortcuts
    • Optimum tool set
  • Wikimedia Cloud Services
  • Beta Features at MediaWiki
Automated editing
  • AfC helper script
  • AntiVandal
  • AutoWikiBrowser
  • Bots
    • Creating
    • history
  • HotCat
  • Huggle
  • Navigation popups
  • RedWarn
  • Twinkle
  • Ultraviolet
  • WPCleaner
  • Inactive
    • igloo
    • STiki
  • See also: Category:Wikipedia how-to
  • Category:Wikipedia information pages
    Further navigation at: Help pages
    • Administrators
  • Accessibility
  • Accounts
  • Bots
  • Referencing
    • Citation metadata
  • Templates
  • User scripts
  • v
  • t
  • e
Wikipedia templates
Main namespace
  • General
  • Cleanup
    • Verifiability and sources
  • Disputes
  • Hatnotes
  • Infoboxes
  • Links
    • External link templates
    • Linking country articles
  • Lists
  • Main page
  • Section
  • Sources of articles
    • Quick reference
  • Standard boxes
  • Stub types
  • Translation
Other namespaces
  • Compact TOC
  • Category
  • File
  • Talk
  • Template
  • User
    • Userboxes
  • User talk
  • Wikipedia
    • WikiProject banners
All namespaces
  • Deletion
    • Speedy
  • Formatting
  • Maintenance
  • Merging
  • Moving
    • Requested
  • Navigation
  • Redirect pages
    • Functional index
    • Language codes
  • Splitting
  • Wikimedia sister projects
Navboxes
with templates
  • Archiving
  • Articles for deletion
  • Birth, death and age
  • Button
  • Category header
  • Citation and verifiability
  • Citation Style 1
  • Deletion review
  • Editnotice
  • Hatnotes
  • Help desk
  • Inline cleanup
  • Introduction cleanup
  • IPA
  • Math
  • Notice and warnings
  • Organization infoboxes
  • Proposed article mergers
  • Protection
  • Quotation
  • Redirects
  • Search
  • Semantics
  • Speedy deletion
    • Notices
  • String-handling
  • Sup and sub-related
  • Top icon
  • Transwiki maintenance
  • Unicode
  • User talk pages
  • User noticeboard notices
  • Userboxes
    • User rights
  • Userspace linking
  • Userspace disclaimers
  • Wikibreak
  • WikiLove
Inline images
  • Wikipedia icons
  • Discussion icons
  • Comment icons
  • Emoji
Help pages
  • Template documentation
  • Examples of templates
  • Maintenance template removal
  • Requested templates
  • Template help
    • Quick guide
  • Favorite templates
  • Template namespace
Related topics
  • WikiProject Templates
  • Index
    • Category
Search
  • Category
  • v
  • t
  • e
Awards, decorations, and medals of Wikipedia
Awarded by co-founder Jimmy Wales
  • Order of the Day
  • Wikimedian of the Year
    • also by country
Awards by WikiProject
  • WikiCup
  • Editor of the Week
  • W Award
  • Four Award
  • Triple Crown
  • Million Award
  •  Impact
  • Precious
Barnstars and other personal awards
  • Barnstar awards
    • by topic
  • Personal user awards
  • Personal greetings and cheers
  • Awards by country
    • 2.0
  • Ribbons
Awards by number of edits
  • Service awards
  • Incremental service awards
  • Administrative service awards
See also
  • WikiLove
  • Thanks!
  • Reward board
  • Contests
  • Merchandise giveaways
  • Wikipedia:Five Year Society
  • Wikipedia:Ten Year Society
  • Wikipedia:Fifteen Year Society
  • Wikipedia:Twenty Year Society
  • Wikipedia:Twenty-Five Year Society
  • WikiProject Wikipedia Awards
  • Peace dove Kindness Campaign
  • v
  • t
  • e
Useful links
Daily pages
  • CAT:HELP
  • WP:ANI
  • WP:BLPN
  • WP:BOTN
  • WP:COIN
  • WP:DASH
  • WP:FTN
  • WP:HD
  • WP:MCQ
  • WP:NORN
  • WP:NPOVN
  • WP:PUMP (/A /M /P /R /T)
  • WP:RD (/C /E /H /L /M /MA /S)
  • WP:RFC (/MEDIA /BIO /ECON /HIST /LANG /NAME /PAG /PHIL /POLY /SCI /SOC /STYLE)
  • WP:RFF
  • WP:RSN
  • WP:SPI
  • WP:THIRD
  • WP:DRV)
Things to do
  • CAT:BACKLOG
  • CAT:M
  • CAT:WRI
  • WP:AFC
  • WP:ASOF
  • WP:DPWL
  • WP:FAC
  • WP:FAR
  • WP:FPC
  • WP:GAN
  • WP:GAR
  • WP:KIND
  • WP:MISSING
  • WP:PR
  • WP:RD
  • WP:RP
  • WP:SPOKEN
  • WP:UW
  • WP:THQ
  • WP:VITAL
  • WP:WANTED
  • WP:WC
  • BrokenRedirects
  • Disambigs
  • LongPages
  • NewPages
  • OrphanPages
  • TagsPages
  • UncatImages
  • UncatPages
Resources
  • CAT:HOWTO
  • WP:AWARD
  • WP:CATEGORY
  • WP:CAT-R
  • WP:CITE
  • WP:CITET
  • WP:COPYEDIT
  • WP:CUTPASTE
  • WP:CUV
  • WP:DEPT
  • WP:DFD
  • WP:DISAMBIG
  • WP:EDIT
  • WP:CITE
  • WP:FORMULA
  • WP:HAT
  • WP:ICT
  • WP:LAYOUT
  • WP:LIBRARY
  • WP:MAGIC
  • WP:MERGE
  • WP:PIFU
  • WP:PRECEDENT
  • WP:REDIRECT
  • WP:STYLE
  • WP:SUMMARY
  • WP:TEMPLATE
  • CatTree
  • PrefixIndex
Policies /
Guidelines
  • WP:3RR
  • WP:ADMIN
  • WP:AP
  • WP:APPEAL
  • WP:ATTACK
  • WP:AUTOBIO
  • WP:BAN
  • WP:BLANK
  • WP:BLOCK
  • WP:BOLD
  • WP:BOTPOL
  • WP:CANVASS
  • WP:CFORK
  • WP:CIVIL
  • WP:CONFLICT
  • WP:CONSENSUS
  • WP:COPYRIGHT
  • WP:DELETE
  • WP:DISCLAIM
  • WP:DISPUTE
  • WP:DISRUPTIVE
  • WP:DONTBITE
  • WP:DPR
  • WP:EP
  • WP:ETIQ
  • WP:EDITWAR
  • WP:FRINGE
  • WP:GAME
  • WP:GOOGLE
  • WP:HARASS
  • WP:HOAX
  • WP:IGNORE
  • WP:IUP
  • WP:LEAD
  • WP:LEGAL
  • WP:LIBEL
  • WP:LINKS
  • WP:CLNT
  • WP:LIVING
  • WP:LOGOS
  • WP:M
  • WP:NAME
  • WP:NONFREE
  • WP:NONSENSE
  • WP:NOT
  • WP:NOTE
  • WP:NPOV
  • WP:NPS
  • WP:OFFICE
  • WP:ORIGINAL
  • WP:OVERSIGHT
  • WP:OWN
  • WP:PACL
  • WP:PD
  • WP:PEACOCK
  • WP:PERFORM
  • WP:POINT
  • WP:POLLING
  • WP:PROD
  • WP:PROTECT
  • WP:RELIABLE
  • WP:SELF
  • WP:SOCK
  • WP:SPAM
  • WP:SPEEDY
  • WP:STUB
  • WP:TALK
  • WP:TP
  • WP:TRIVIA
  • WP:USERBOX
  • WP:USERNAME
  • WP:USERPAGE
  • WP:VANDAL
  • WP:VANISH
  • WP:VERIFY
  • WP:WEASEL
  • WP:WHEEL
Administrators
  • CAT:AB
  • CAT:CSD
  • CAT:PER
  • CAT:RFU
  • WP:AE
  • WP:AIV
  • WP:AN
  • WP:ANEW
  • WP:ARL
  • WP:CP
  • WP:DGFA
  • WP:NAS
  • WP:OP
  • WP:RFA
  • WP:RFARB
  • WP:RFM
  • WP:RFPP
  • WP:RM
  • WP:RSPAM
  • WP:UAA
  • BlockLog
  • DelLog
  • ProtectLog
External links
  • Article statistics
  • Edit Counter
  • FIST
  • ISBNdb
  • Make Reference
  • Wikichecker
  • WikiEN-l archives
Retrieved from "https://teknopedia.ac.id/w/index.php?title=Help:HTML_in_wikitext&oldid=1321084874"
Categories:
  • Wikipedia how-to
  • Inactive project pages
  • Wikipedia editor help
Hidden category:
  • Wikipedia semi-protected project pages

  • indonesia
  • Polski
  • العربية
  • Deutsch
  • English
  • Español
  • Français
  • Italiano
  • مصرى
  • Nederlands
  • 日本語
  • Português
  • Sinugboanong Binisaya
  • Svenska
  • Українська
  • Tiếng Việt
  • Winaray
  • 中文
  • Русский
Sunting pranala
url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url
Pusat Layanan

UNIVERSITAS TEKNOKRAT INDONESIA | ASEAN's Best Private University
Jl. ZA. Pagar Alam No.9 -11, Labuhan Ratu, Kec. Kedaton, Kota Bandar Lampung, Lampung 35132
Phone: (0721) 702022
Email: pmb@teknokrat.ac.id