Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
coderoflagos authored May 25, 2020
1 parent 995a3e8 commit 5fab8c2
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>To-Do list app with JavaScript</title>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">

<!-- Custom Style -->
<link rel="stylesheet" type="text/css" href="styleNEW.css">

<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:600,800" rel="stylesheet">

<!-- FontAwesome Icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">

<title>Dom Manipulation | VLS</title>
</head><link rel="stylesheet" href="./style.css">

</head>
<body>
<!-- partial:index.partial.html -->
<body style="font-family: Poppins;">
<div class="container">
<div class="row">
<div class="intro col-12">
<h1>To-Do list app by Opemipo Disu</h1>
<div>
<div class="border1"></div>

</div>

</div>

<div class="row">
<div class="helpText col-12">
<p id="first">Enter text into the input field to add items to your list and then tap an item after inputing a task.</p>
</div>
</div>
<br>

<input id="userInput" type="text" placeholder="Add a task here..." maxlength="27" style="height: 40px;">
<button id="enter" style="border-radius: 0px;"> Add a task</button>
</div>
</div>

<!-- Empty List -->


<ul class="col-12 offset-0 col-sm-8 offset-sm-2">
</ul>
</div>
</div>

</div>
<script type="text/javascript" src="script_method3.js"></script>
</body>
</html>
<!-- partial -->
<script src="./script.js"></script>

</body>
</html>

0 comments on commit 5fab8c2

Please sign in to comment.