html-tips-tricks/content-editable/index.html

27 lines
820 B
HTML
Raw Permalink Normal View History

2020-08-13 09:14:59 +02:00
<!DOCTYPE html>
2020-08-13 15:03:33 +02:00
<html>
2020-08-13 09:14:59 +02:00
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
2020-08-13 09:26:24 +02:00
<title>HTML Tips and Tricks - Content Editable</title>
2020-08-13 09:14:59 +02:00
<meta name='viewport' content='width=device-width, initial-scale=1'>
2020-08-14 05:44:20 +02:00
<link href="https://fonts.googleapis.com/css2?family=Chilanka&display=swap" rel="stylesheet">
2020-08-13 09:14:59 +02:00
<link rel='stylesheet' type='text/css' media='screen' href='../main.css'>
</head>
<body>
<div class="demo">
2020-08-14 07:00:23 +02:00
<a href="../index.html" class="home">
<img src="../home.svg" alt="home" />
</a>
2020-08-13 09:14:59 +02:00
<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>
2020-08-13 15:03:33 +02:00
</body>
</html>