Skip to content

Instantly share code, notes, and snippets.

@fmway
Last active September 27, 2023 15:45
Show Gist options
  • Save fmway/f11aa7c4b6a0e3678b8a0e0ac26c80af to your computer and use it in GitHub Desktop.
Save fmway/f11aa7c4b6a0e3678b8a0e0ac26c80af to your computer and use it in GitHub Desktop.
tags in html
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- external css -->
<!-- <link href="style.css" rel="stylesheet"> -->
<!-- internal css -->
<!--<style>
p {
color: blue;
}
</style> -->
</head>
<body>
<!-- inline css -->
<!-- <p style="color: blue;">Hello World</p> -->
<!-- paragraf -->
<!-- <p><b>Lorem</b> <i>ipsum</i> <u>dolor</u> <s>sit</s> , officia excepteur ex fugiat reprehenderit enim labore culpa sint ad nisi Lorem pariatur mollit ex esse exercitation amet. Nisi anim cupidatat excepteur officia. Reprehenderit nostrud nostrud ipsum Lorem est aliquip amet voluptate voluptate dolor minim nulla est proident. Nostrud officia pariatur ut officia. Sit irure elit esse ea nulla sunt ex occaecat reprehenderit commodo officia dolor Lorem duis laboris cupidatat officia voluptate. Culpa proident adipisicing id nulla nisi laboris ex in Lorem sunt duis officia eiusmod. Aliqua reprehenderit commodo ex non excepteur duis sunt velit enim. Voluptate laboris sint cupidatat ullamco ut ea consectetur et est culpa et culpa duis.</p> -->
<!-- supscript -->
<!-- <p>4<sup>2</sup></p> -->
<!-- subscript -->
<!-- <p>H<sub>2</sub>0</p> -->
<!-- list -->
<!-- order list -->
<!-- <ol type="a"> -->
<!-- <li>Satu</li> -->
<!-- <li>Dua</li> -->
<!-- <li>Tiga</li> -->
<!-- </ol> -->
<!-- unordered list -->
<!-- <ul type="square"> -->
<!-- <li>Empat</li> -->
<!-- <li>Lima</li> -->
<!-- <li>Enam</li> -->
<!-- </ul> -->
<!-- tabel -->
<!-- <table border="1"> -->
<!-- tabel row -->
<!-- <tr> -->
<!-- tabel head -->
<!-- <th>No</th> -->
<!-- <th>Nama</th> -->
<!-- <th>Jurusan</th> -->
<!-- </tr> -->
<!-- <tr> -->
<!-- tabel data -->
<!-- <td rowspan="2">1</td> -->
<!-- <td colspan="2">Maria Anders</td> -->
<!-- <!-- <td>PSTI</td> -->
<!-- </tr> -->
<!-- <tr> -->
<!-- <!-- <td>1</td> -->
<!-- <td>Francisco Chang</td> -->
<!-- <td>PSTI</td> -->
<!-- </tr> -->
<!-- </table> -->
<!-- image -->
<!-- <img width="100%" src="https://psti.upi.edu/wp-content/uploads/2022/09/logo.png" alt="logo psti"/> -->
<!-- <img src="zero.svg" alt="zig" /> -->
<!-- anchor -->
<!-- <a href="https://google.com">Google</a> -->
<!-- <br /> -->
<!-- <a href="https://www.google.com/maps/@-6.8583424,107.5871744,15z?entry=ttu">Klik Maps</a> -->
<!--frame web-->
<!-- <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3963.865984405633!2d107.4447009!3d-6.5386033!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2e690e68a1406c01%3A0xa66f34eb29c41198!2sUniversitas%20Pendidikan%20Indonesia%2C%20Kampus%20Purwakarta!5e0!3m2!1sid!2sid!4v1695290524927!5m2!1sid!2sid" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe> -->
<!-- form -->
<!-- <form> -->
<!-- <label for="nama">Nama: </label> -->
<!-- <input type="text" name="nama" value="" id="nama"/> -->
<!-- <br /> -->
<!-- <label for="email">Email: </label> -->
<!-- <input type="email" name="email" value="" id="email" /> -->
<!-- <br /> -->
<!-- <label for="password">Password: </label> -->
<!-- <input type="password" id="password" name="password" value=""/> -->
<!-- <br /> -->
<!-- <input type="checkbox" name="" value=""/> -->
<!-- <br /> -->
<!-- <button type="submit">SUBMIT</button> -->
<!-- <input type="submit" name="submit" value="submit" /> -->
<!-- </form> -->
</body>
</html>
p {
color: blue;
}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment