blob: 0ff513d735677b79bd3b4f4da43d9309c349fe27 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="assets/css/style.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<meta charset="UTF-8">
<title>Solutions Repo</title>
</head>
<body>
<main id = 'solutions-main'>
<div class = 'search' id = 'solutions-div'>
<h1 id = 'solutions-header'>CSC309-Programming on the Web</h1>
<h3> Summer, 2016</h3>
<h3> Final</h3>
<section class = 'solutions-card'>
<h3 class = 'questions-number'>Question 1</h3>
<p class = 'questions-comment' >Comments: 4</p>
</section>
<section class = 'solutions-card'>
<h3 class = 'questions-number'>Question 2</h3>
<p class = 'questions-comment' >Comments: 3</p>
</section>
<section class = 'solutions-card'>
<h3 class = 'questions-number'>Question 3</h3>
<p class = 'questions-comment' >Comments: 2</p>
</section>
<section class = 'solutions-card'>
<h3 class = 'questions-number'>Question 4</h3>
<p class = 'questions-comment' >Comments: 1</p>
</section>
</div>
</main>
<footer id = 'solutions-footer'>
<div id="footer-container">
<nav>
<a href="#">Contact</a>
<a href="#">About Us</a>
<a href="#">Terms of Use</a>
</nav>
<h6>Copyright 2016</h6>
</div>
</footer>
</body>
</html>
|