Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
ahjoyo
/
idc0007
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
981fa8f0
authored
Feb 25, 2019
by
mhasan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
view
parent
687662bf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
128 additions
and
2 deletions
create_style.css
register_css.css
view.css
view.html
create_style.css
View file @
981fa8f0
...
...
@@ -49,7 +49,7 @@ html, body {
body
{
font-family
:
'Franklin Gothic Medium'
,
'Arial Narrow'
,
Arial
,
sans-serif
;
background-image
:
url(img.
JPG
)
;
background-image
:
url(img.
jpg
)
;
background-color
:
lightsteelblue
;
background-attachment
:
scroll
;
background-position
:
left-top
;
...
...
register_css.css
View file @
981fa8f0
...
...
@@ -49,7 +49,7 @@ html, body {
body
{
font-family
:
'Franklin Gothic Medium'
,
'Arial Narrow'
,
Arial
,
sans-serif
;
background-image
:
url(img.
JPG
)
;
background-image
:
url(img.
jpg
)
;
background-color
:
lightsteelblue
;
background-attachment
:
scroll
;
background-position
:
left-top
;
...
...
view.css
0 → 100644
View file @
981fa8f0
@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
view.html
0 → 100644
View file @
981fa8f0
<!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>
<a
href =
"register.html"
>
Register
</a>
<a
href =
"create.html"
>
Create List
</a>
<a
href =
"view.html"
>
View List
</a>
<a
href =
"faq.html"
>
FAQ
</a>
</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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment