-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathassignments.html
38 lines (32 loc) · 1.12 KB
/
assignments.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet" />
<title>assignment | adarshbalika</title>
</head>
<body>
<nav class="navigation container">
<div class="nav-brand"><a href="/">adarshbalika</a></div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link" href="/">home</a>
</li>
<li class="list-item-inline">
<a class="link " href="/projects.html">projects</a>
</li>
<li class="list-item-inline">
<a class="link" href="/blogs.html">blogs</a>
</li>
</ul>
</nav>
<header class="hero">
<h1 class="hero-heading">this is an assignment</h1>
<div class="container">
<p> You need to work on this yourself and practice CSS and JS taught in the class.</p>
<p>This should be similar to minionese app, as a bonus try POST request.</p>
</div>
</header>
</body>
</html>