Commit 981fa8f0 by mhasan

view

parent 687662bf
...@@ -49,7 +49,7 @@ html, body { ...@@ -49,7 +49,7 @@ html, body {
body{ body{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background-image: url(img.JPG); background-image: url(img.jpg);
background-color: lightsteelblue; background-color: lightsteelblue;
background-attachment: scroll; background-attachment: scroll;
background-position: left-top; background-position: left-top;
......
...@@ -49,7 +49,7 @@ html, body { ...@@ -49,7 +49,7 @@ html, body {
body{ body{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background-image: url(img.JPG); background-image: url(img.jpg);
background-color: lightsteelblue; background-color: lightsteelblue;
background-attachment: scroll; background-attachment: scroll;
background-position: left-top; background-position: left-top;
......
@charset "UTF-8";
@media print {
body {
background-color: white;
color: black;
}
}
body{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background-image: url(img.jpg);
background-color: lightsteelblue;
background-attachment: scroll;
background-position: left-top;
background-repeat: no-repeat;
background-size: cover;
margin: 0;
padding: 0;
}
nav{
margin-bottom: 0;
margin-right: auto;
margin-top:0px;
margin-left: auto;
transition-property: 120px;
width: 600px;
position: relative;
padding: 2px;
height: 100px;
box-sizing: border-box;
}
nav li {
padding: 2px;
margin-right: 10px;
list-style-type: none;
background-color: #4d7e6f;
display: inline;
}
h2{
text-align: center;
}
table {
margin-left: auto;
margin-right: auto;
width: 500px;
border-collapse: collapse;
border: 2px solid black;
}
th,td {
padding: 10px;
margin-left: 20px;
font-size: 1.25em;
}
tr:nth-child(odd) {
background-color: whitesmoke;
color: black;
}
tr:nth-child(even) {
background-color: grey;
color: black;
}
tr:nth-child(1) {
filter: invert(100%);
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href = "view.css">
<meta charset="UTF-8">
<meta name="description" content="ICD0007 Project, Todo List">
<title> View Tasks</title>
</head>
<body>
<nav class="nav">
<a href = "web tech.html"> Index </a> &nbsp; &nbsp;
<a href = "register.html"> Register </a>&nbsp; &nbsp;
<a href = "create.html"> Create List </a>&nbsp; &nbsp;
<a href = "view.html"> View List</a>&nbsp; &nbsp;
<a href = "faq.html"> FAQ </a>&nbsp; &nbsp;
</nav>
<h2> View Tasks for today</h2>
<table>
<tr> <th> TIME</th> <th> TASKS</th></tr>
<tr><td> 12:30</td> <td> DO something</td> </tr>
<tr> <td>16:40</td> <td> Do another thing..</td></tr>
</table>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment