Last active
November 15, 2017 19:59
-
-
Save davutkmbr/652c3dd587a6d61668fe4be090a96ed7 to your computer and use it in GitHub Desktop.
HTML6-Sample-Document
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html:html> | |
<html:head> | |
<html:title>HTML6 Hakkında</html:title> | |
</html:head> | |
<html:body> | |
<html:a href="http://siteurl">Go to siteurl.com!</html:a> | |
</html:body> | |
</html:html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html:html> | |
<html:head> | |
<html:title>HTML6 Hakkında</html:title> | |
</html:head> | |
<html:body> | |
<!-- Web sitenizin içeriğinin bulunduğu yer burasıdır --> | |
</html:body> | |
</html:html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html:html> | |
<html:head> | |
<html:title>A Look Into HTML6</html:title> | |
<html:meta type="title" value="Page Title"> | |
<html:meta type="description" value="HTML example with namespaces"> | |
<html:link src="css/mainfile.css" title="Styles" type="text/css"> | |
<html:link src="js/mainfile.js" title="Script" type="text/javascript"> | |
</html:head> | |
<html:body> | |
<header> | |
<logo> | |
<html:media type="image" src="images/xyz.png"> | |
</logo> | |
<nav> | |
<html:a href="/img1">a1</a> | |
<html:a href="/img2">a2</a> | |
</nav> | |
</header> | |
<content> | |
<article> | |
<h1>Heading of main article</h1> | |
<h2>Sub-heading of main article</h2> | |
<p>[...]</p> | |
<p>[...]</p> | |
</article> | |
<article> | |
<h1>The concept of HTML6</h1> | |
<h2>Understanding the basics</h2> | |
<p>[...]</p> | |
</article> | |
</content> | |
<footer> | |
<copyright>This site is © to Anonymous 2014</copyright> | |
</footer> | |
</html:body> | |
</html:html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html:html> | |
<html:head> | |
<!-- Head içeriği buraya yazılır. <html:title> gibi. --> | |
</html:head> | |
</html:html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html:html>// HTML5'te <html> olarak yazılıyordu. | |
<!-- Örnek HTML dökümanı --> | |
</html:html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html:html> | |
<html:head> | |
<html:title>HTML6 Hakkında</html:title> | |
<html:link src="js/mainfile.js" title="Script" type="text/javascript"> | |
</html:head> | |
</html:html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html:html> | |
<html:head> | |
<html:title>HTML6 Hakkında</html:title> | |
</html:head> | |
<html:body> | |
<!-- Görsel buraya gelecek --> | |
<html:media src="img1/logo.jpg" type="image"> | |
<!-- Video için tür (type="") belirtmenize gerek yok --> | |
<html:media src="videos/slide.mov"> | |
</html:body> | |
</html:html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html:html> | |
<html:head> | |
<html:title>HTML6 Hakkında</html:title> | |
<html:meta type="description" value="Örnek sayfa açıklaması"> | |
</html:head> | |
</html:html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html:link href="./a.html">Metin tabanlı içerik</html:link> | |
<!-- Kısayolu... --> | |
<foo class="xyz" /> | |
<!-- ...bununla aynıdır: --> | |
<foo class="xyz"></foo> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html:meta type="author" content="Davutabi"> | |
<html:meta type="author" content="Davutabi" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html:html> | |
<html:head> | |
<html:title>HTML6 Hakkında</html:title> | |
</html:head> | |
</html:html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment