mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 08:48:26 +01:00
21 lines
No EOL
598 B
HTML
21 lines
No EOL
598 B
HTML
<!DOCTYPE html>
|
|
<li>
|
|
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
|
<title>HTML Tips and Tricks - Details Tag</title>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
<link rel='stylesheet' type='text/css' media='screen' href='../main.css'>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="demo">
|
|
<h2> Shoppping List(Content Editable) </h2>
|
|
<ul class="content-editable" contenteditable="true">
|
|
<li> 1. Milk </li>
|
|
<li> 2. Bread </li>
|
|
<li> 3. Honey </li>
|
|
</ul>
|
|
</div>
|
|
</body> |