71 lines
2.3 KiB
HTML
71 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" >
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>CodePen - Vacation Todo List</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
|
|
</head>
|
|
<body>
|
|
<!-- partial:index.partial.html -->
|
|
<!--
|
|
Twitter: https://twitter.com/tjgillweb
|
|
Codepen: https://codepen.io/tjgill/
|
|
Github: https://github.com/tjgillweb/
|
|
-->
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
|
|
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
|
|
<div class="todoList">
|
|
<div class="cover-img">
|
|
<div class="cover-inner">
|
|
<h3>Vacation</h3>
|
|
</div>
|
|
</div>
|
|
<div class="content">
|
|
<form class="add">
|
|
<input type="text" name="add" placeholder="Add item...">
|
|
<div class="input-buttons">
|
|
<a href="#" class="add-todo">
|
|
<i class="fas fa-plus add"></i>
|
|
</a>
|
|
</div>
|
|
</form>
|
|
<ul class="todos">
|
|
<li>
|
|
<input type="checkbox" id="todo_1" />
|
|
<label for="todo_1">
|
|
<span class="check"></span>Buy Flight Tickets
|
|
</label>
|
|
<i class="far fa-trash-alt delete"></i>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="todo_2" />
|
|
<label for="todo_2">
|
|
<span class="check"></span>Find AirBnB
|
|
</label>
|
|
<i class="far fa-trash-alt delete"></i>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="todo_3" />
|
|
<label for="todo_3">
|
|
<span class="check"></span> Look up things to do
|
|
</label>
|
|
<i class="far fa-trash-alt delete"></i>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="todo_4" />
|
|
<label for="todo_4">
|
|
<span class="check"></span> Passport
|
|
</label>
|
|
<i class="far fa-trash-alt delete"></i>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- partial -->
|
|
<script src="./script.js"></script>
|
|
|
|
</body>
|
|
</html>
|