Add files via upload

pull/1294/head
John Wachira Gathimba 1 year ago committed by GitHub
parent 8f07e36214
commit a432b8d484
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,43 +1,29 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8" />
<title>Web Development for Beginners</title> <meta name="viewport" content="width=device-width" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>To-Do List</title>
<meta name="description" content="Description"> <link rel="stylesheet" href="main.css" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> </head>
<link rel="icon" type="image/png" href="images/favicon.png"> <body>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"> <section class="container">
<link rel="stylesheet" href="index.css"> <div class="heading">
</head> <img class="heading__img" src="images/lapii.jpg" alt="Image of a laptop" />
<body> <h1 class="heading__title">To-Do List</h1>
<div id="app"></div> </div>
<script type="text/javascript"> <form class="form">
(function(c,l,a,r,i,t,y){ <label class="form__label" for="todo">Enter your to-do item:</label>
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; <input class="form__input" type="text" id="todo" name="to-do" size="30" required />
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; <button class="button"><span>Submit</span></button>
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); </form>
})(window, document, "clarity", "script", "ekxr1n6fgy"); <div>
<ul class="toDoList">
window.$docsify = { <!-- To-do list items will be added dynamically here -->
loadNavbar: 'docs/_navbar.md', </ul>
name: 'Web Development for Beginners: A Curriculum', </div>
repo: 'https://github.com/microsoft/Web-Dev-For-Beginners', </section>
relativePath: true,
auto2top: false, <script src="script.js"></script>
notFoundPage: true, </body>
alias: { </html>
'/(README.(.*))': '/translations/$1',
'#/((?!README).*)/README.(.*)': '$1/translations/README.$2',
'/((?!README).*)/((?!README).*)/README.(.*)': '$1/$2/translations/README.$3',
// handle English, since English files isn't in translation folders
'/(README$)': '/$1',
'#/((?!README).*)/(README$)': '$1/$2',
'/((?!README).*)/((?!README).*)/(README$)': '$1/$2/$3'
}
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
</body>
</html>

Loading…
Cancel
Save