<!DOCTYPE html> <html> <head><br> <meta charset="URF-8"> <meta name="description" content="u are using king website"> <title> website of king</title> </head> <body> <header> <nav> https:www.google.com <hr/> https:www.yahoo.com </nav> </header> <main> <article> <section> <h4><b>DRAGON BALLZ<b></h4> Dragon Ball Z (Japanese: ドラゴンボールZ, Hepburn: Doragon Bōru Zetto, commonly abbreviated as DBZ) is a Japanese anime television series produced by Toei Animation. Part of the Dragon Ball media franchise, it is the sequel to the 1986 Dragon Ball anime series and adapts the latter 325 chapters of the original Dragon Ball manga series created by Akira Toriyama, which ran in Weekly Shōnen Jump from 1988 to 1995. The series aired in Japan on Fuji TV from April 1989 to January 1996 and was later dubbed for broadcast in at least 81 countries worldwide.[4] Dragon Ball Z continues the adventures of Son Goku in his adult life as he and his companions defend the Earth against villains including aliens (Vegeta, Frieza), androids (Cell), and magical creatures (Majin Buu). At the same time, the story parallels the life of his son, Gohan, as well as the development of his rivals, Piccolo and Vegeta. Due to the success of the anime in the United States, the manga chapters making up its story were initially released by Viz Media under the Dragon Ball Z title. The anime's popularity has also spawned numerous media and merchandise that have come to represent the majority of content within the Dragon Ball franchise. Dragon Ball Z remains a cultural icon through numerous adaptations and re-releases, including a remastered broadcast titled Dragon Ball Kai.[a] Dragon Ball Z has since been followed by two sequel series: Dragon Ball GT (1996–1997) and Dragon Ball Super (2015–2018). <aside> google ADS </aside> </section> <section> <h4><b><i>BEN 10<i><b></h4> Ben 10 is an American animated television series and media franchise created by Man of Action Studios and produced by Cartoon Network Studios. The series centers on a boy named Ben Tennyson who acquires the Omnitrix, an alien device resembling a wristwatch, which contains DNA of different alien species. Using the Omnitrix, Ben is able to transform into powerful aliens with various abilities. The Omnitrix initially contains ten aliens, although later on Ben obtains more species by adding their DNA. The Ben 10 franchise has received widespread critical acclaim, winning three Emmy Awards. It consists primarily of five television series and four films, the latter of which aired between August 2007 and March 2012. Spanning fifteen years, it is Cartoon Network's longest-running franchise to date. There is also a Ben 10 toy line manufactured by Bandai for the first four shows and Playmates Toys for the reboot. Worldwide, the franchise has grossed over $6 billion in retail sales.[2] </section> </article> </main> <footer> </footer> </body> </html>
Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML
. You can also specify the stylesheet information in styles.css
tab and scripts information in scripts.js
tab and start coding.
HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.
<!DOCTYPE html>
<html>
and ends with </html>
<h1>
to <h6>
where <h1>
is the highest important heading and <h6>
is the least important sub-heading.<p>..</p>
tag.<a>
tag.
<a href="https://onecompiler.com/html">HTML online compiler</a>
<img>
tag, where src
attribute consists of image name.<button>..</button>
tag<ul>
for unordered/bullet list and <ol>
for ordered/number list, and the list items are defined in <li>
.<a href="https://onecompiler.com/html">HTML online compiler</a>
CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.
Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.
body{
padding: 25px;
}
.title {
color: #228B22;
font-family: Candara;
}
<table>
tag.<tr>
tag<th>
tag<td>
tag<caption>
tag<script>
is the tag used to write scripts in HTML<script src="script.js"></script>