From 037c5b7e1932f5ad487dd502c633634ab4809d43 Mon Sep 17 00:00:00 2001 From: Tapas Adhikary Date: Thu, 13 Aug 2020 12:44:59 +0530 Subject: [PATCH] included fonts --- content-editable/index.html | 21 +++++++++++++++++++++ index.html | 5 +++++ main.css | 15 +++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 content-editable/index.html diff --git a/content-editable/index.html b/content-editable/index.html new file mode 100644 index 0000000..d7cb091 --- /dev/null +++ b/content-editable/index.html @@ -0,0 +1,21 @@ + +
  • + + + + + HTML Tips and Tricks - Details Tag + + + + + +
    +

    Shoppping List(Content Editable)

    +
      +
    • 1. Milk
    • +
    • 2. Bread
    • +
    • 3. Honey
    • +
    +
    + \ No newline at end of file diff --git a/index.html b/index.html index 7bc9274..fbe4c52 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,7 @@ HTML Tips and Tricks + @@ -19,6 +20,10 @@ Inputs - Various useful tips
  • +
  • + + Content Editable - Make the content Editable +
  • diff --git a/main.css b/main.css index e3ea192..5c7b8d2 100644 --- a/main.css +++ b/main.css @@ -1,6 +1,7 @@ body { background-color: #000000; color: #ffffff; + font-family: 'Chilanka', cursive; } a { @@ -19,6 +20,10 @@ td { border-bottom: 1px solid #ddd; } +li { + list-style: none; +} + .demo { margin: 30px auto 30px auto; display: flex; @@ -26,3 +31,13 @@ td { justify-content: center; flex-direction: column; } + +.demo .list li{ + padding: 10px; +} + +.demo .content-editable { + border: 1px solid; + border-radius: 5px; + padding: 10px; +}