20 lines
645 B
HTML
20 lines
645 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<div class="card" id="header">
|
|
<h2 id='headertext'>Saved Courses</h2>
|
|
<div id="buttons" style="padding: 10px 0px 5px 10px;">
|
|
<button id="clear" class="matbut" style="background:#4CAF50">click me</button>
|
|
<button id="clear" class="matbut" style="background:#FFC107">click me</button>
|
|
</div>
|
|
</div>
|
|
<ul id= "courseList" style="list-style-type: none;padding: 5px;"></ul>
|
|
<script src="jquery-3.3.1.min.js"></script>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|