Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| <html style=" color-scheme: light dark; supported-color-schemes: light dark;"> | |
| <head> | |
| <meta name="viewport" content="width=device-width" /> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" /> | |
| <link href="https://unpkg.com/ionicons@4.5.5/dist/css/ionicons.min.css" rel="stylesheet" /> | |
| <title>Successful Deposit</title> | |
| <meta name="color-scheme" content="light dark" /> | |
| <meta name="supported-color-schemes" content="light dark" /> |
| function getElement(element) { | |
| return document.querySelector(element) | |
| } | |
| function createAnElement(elementName, className) { | |
| let newElement = document.createElement(elementName) | |
| newElement.setAttribute("class", className) | |
| return newElement | |
| } |
| <div class="container"> | |
| <div class="plans"> | |
| <ul class="priceBox"> | |
| <li class="header">Hatchling Plan</li> | |
| <li class="minHeader">Now 60% OFF!</li> | |
| <li class="text"><strong>Single</strong> domain</li> | |
| <li class="text">One click installs</li> | |
| <li class="text"><strong>Unmetered</strong> bandwidth</li> | |
| <li class="footer text">Starting at Tsh 6250/month</li> | |
| <p class="button1">Buy now</p> |