-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSummary.html
More file actions
39 lines (35 loc) · 1.13 KB
/
Summary.html
File metadata and controls
39 lines (35 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="Looks.css">
<title>My goals</title>
</head>
<body>
<div class="page">
<div class="header">My first functional website</div>
<div class="menu">
<div class="dropdown">
<button class="dropbtn">Guide</button>
<div class="dropdown-content">
<a href="Summary.html">Work Log</a>
<a href="week1.html">Week 1</a>
<a href="week2.html">Week 2</a>
<a href="week3.html">Week 3</a>
<a href="week4.html">Week 4</a>
<a href="week5.html">Week 5</a>
<a href="week6.html">Week 6</a>
<a href="week7.html">Week 7</a>
<a href="week8.html">Week 8</a>
</div>
</div>
</div>
<div class="mainContent">
<h1>Work log</h1>
<h3>Week 1</h3>
<p>Day 3 i made the layout of this site using css grids ive also added added goals for week 1</p>
<p>Day 4 Added a working guide to select between the goals and this worklog</p>
</div>
<div class="footer">Made by Kevin</div>
</div>
</body>
</html>