-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (108 loc) · 3.6 KB
/
index.html
File metadata and controls
116 lines (108 loc) · 3.6 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<title>Assignments</title>
<style type = "text/css">
h1 {
color:navy;
font-family:Arial, Helvetica, sans-serif;
}
table{
border:1px solid royalblue;
border-collapse: collapse;
}
th{
border:1px solid royalblue;
padding: 10px;
}
td{
border:1px solid royalblue;
padding: 10px;
}
.menu{
width: 100%;
border: 5px solid rgb(0, 157, 255);
background-color: blue;
color: white;
font-family:sans-serif;
}
.menu-item{
display: inline-block;
height: 25px;
width: 100%;
color: white;
font-size: 24px;
padding: 10px;
}
.menu-item:hover{
color:slateblue;
}
</style>
</head>
<body>
<div class="menu">
<div class= "menu-item">Tejas' Site</div>
<div class= "menu-item">Home</div>
<div class= "menu-item"> <a href= "index.html">Assignments</a></div>
</div>
<h1>Tejas' Assignments</h1>
<table>
<thead>
<tr>
<th>Assignment #</th>
<th>Description</th>
<th>Link</th>
<th>Time (hours)</th>
<th>Difficult (1-5)</th>
<th>Useful (1-5)</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.1</td>
<td>Deploy a website to github</td>
<td> <a href= "firstfile.html"> First file</a> </td>
<td>0.3 hrs</td>
<td>2</td>
<td>5</td>
</tr>
<tr>
<td>1.2</td>
<td>Create an assignments page</td>
<td><a href= "index.html"> Assignments page</a></td>
<td>0.5 hrs</td>
<td>2</td>
<td>5</td>
</tr>
<tr>
<td>1.3</td>
<td></td>
<td>Paste link here</td>
<td> hrs</td>
<td></td>
<td></td>
</tr>
<tr>
<td>1.A</td>
<td>What did you like this week?</td>
<td>I like how the tutorials were easy to follow for beginners, and that it was really fun</td>
</tr>
<tr>
<td>1.B</td>
<td>What didn't you like this week?</td>
<td>I've liked everything so far</td>
</tr>
<tr>
<td>1.A</td>
<td>How can we improve the material from this week?</td>
<td>Since it's just the beginning, I'm not sure yet. But it seems perfect so far </td>
</tr>
<tr>
<td>1.A</td>
<td>Show us anything else you coded up this week!</td>
<td>I'm working on learning the tools to create a nice website for my startup...but I don't ahve anything concrete yet</td>
</tr>
</tbody>
</table>
</body>
</html>