Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
Blockquote
ini adalah blockquote. Kalau kalian tak tau blockquote silahkan cari di google banyak sekali. Kalau tak tau juga coba tanya yang tahu.
text samping kiri
text tengah
text samping kanan
Teks Rata (justify)
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
Tulisan Bold (tebal)
Tulisan Miring (Italic)
Tulisan Bergaris bawah (Underline)
Tulisan Dicoret (Striketrough)
Tulisan berwarna merah , Tulisan berwarna biru , Color , Color, Color , Color, Color , Color
TULISAN KAPITAL SEMUA (UPPERCASE)
tulisan kecil semua (lowercase)
Tulisan Mark/Highlight
Tulisan Mark/Highlight
Tulisan Terkecil
Tulisan kecil
Tulisan Normal
Tulisan Sedang
Tulisan Besar
Tulisan Terbesar
Heading H1
Heading H2
Heading H3
Heading H4
Paragraf
aaaaaaaaaaaaaa
Syntax Highlighter
/* SYNTAX HIGHLIGHTER BY JAGOANKODE */
.article pre{
background-color:#333;
border-left:5px solid #009688;
padding:0;
margin:.5em auto;
}
.comment-replytt{
display: inline-block;
font-size: 17px;
padding: 7px 15px;
background: #4b50da;
color: white;
font-weight: 600;
border-radius: 20px;
}
<!-- ini adalah komentar -->
<!DOCTYPE html>
<html>
<body>
<h1>The input pattern attribute</h1>
<form action="/action_page.php">
<label for="country_code">Country code:</label>
<input type="text" id="country_code" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code"><br><br>
<input type="submit">
</form>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
// ini adalah komentar
<script type='text/javascript'>
//<![CDATA[
function loadCSS(e, t, n) { "use strict"; var i = window.document.createElement("link"); var o = t || window.document.getElementsByTagName("script")[0]; i.rel = "stylesheet"; i.href = e; i.media = "only x"; o.parentNode.insertBefore(i, o); setTimeout(function () { i.media = n || "all" }) };loadCSS("jk-one");
//]]>
</script>
<script>
function myFunction() {
var str = "Visit Jk-one.\\nLearn JavaScript.";
var patt1 = /\\n/;
var result = str.search(patt1);
document.getElementById("demo").innerHTML = result;
document.getElementsByClassName("demo").innerHTML = result;
document.getElementsByTagName("demo").innerHTML = result;
document.querySelector("demo").innerHTML = result;
document.querySelectorAll("demo").innerHTML = result;
}
</script>
// ini adalah komentar //
<p><strong>Note:</strong> The pattern attribute of the input tag is not supported in Safari 10 (or earlier).</p>
</body>
</html>
<?php
require('simple_html_dom.php');
// Create DOM from URL or file
$html = file_get_html('https://www.youtube.com/feed/trending');
// creating an array of elements
$videos = [];
// Find top ten videos
$i = 1;
foreach ($html->find('li.expanded-shelf-content-item-wrapper') as $video) {
if ($i > 10) {
break;
}
// Find item link element
$videoDetails = $video->find('a.yt-uix-tile-link', 0);
// get title attribute
$videoTitle = $videoDetails->title;
// get href attribute
$videoUrl = 'https://youtube.com' . $videoDetails->href;
// push to a list of videos
$videos[] = [
'title' => $videoTitle,
'url' => $videoUrl
];
$i++;
}
var_dump($videos);
<?php
require 'noFileExists.php';
echo "I have a $color $car.";
?>
Ordered List
- Satu satu satu
- Dua dua dua
- Tiga tiga tiga
- Empat empat empat
- Lima lima lima
- Enam enam enam
- Tujuh tujuh tujuh
- Delapan delapan delapan
- Sembilan sembilan sembilan
- Sepuluh sepuluh sepuluh
Unordered List
- Satu satu satu
- Dua dua dua
- Tiga tiga tiga
- Empat empat empat
- Lima lima lima
- Enam enam enam
- Tujuh tujuh tujuh
- Delapan delapan delapan
- Sembilan sembilan sembilan
- Sepuluh sepuluh sepuluh
Tabel
No. | Nama | Kota |
---|---|---|
1 | Bejo | Sukabumi |
2 | Suginem | Bandung |
3 | Paijo | Jakarta |
4 | Tukiyem | Bekasi |
5 | Pororo | Tangerang |
6 | Asu | Bogor |
Belum ada Komentar untuk "ALL STYLE. Semua Gaya Tulisan, Font, dan Atribut Lain "
Posting Komentar