-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcases.html
101 lines (101 loc) · 4 KB
/
cases.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Portfolio</title>
<!-- For responsive design scale the width of the website to the device width-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900|Cormorant+Garamond:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<a class="header-brand" href="index.html">mmtuts</a>
<nav>
<ul>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="about.html">About me</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<a class="header-cases" href="cases.html">Cases</a>
</nav>
</header>
<!-- Would it have been better here to only have a div and no section so that we could center the content correctly vertically no matter the vertical height of the device? See the CSS table code trick.-->
<main>
<section class="cases-links">
<div class="wrapper">
<h2>Cases</h2>
<a href="case1.html">
<div>
<p>Case1</p>
</div>
</a>
<a href="case1.html">
<div>
<p>Case2</p>
</div>
</a>
<a href="case1.html">
<div>
<p>Case3</p>
</div>
</a><a href="case1.html">
<div>
<p>Case4</p>
</div>
</a>
<a href="case1.html">
<div>
<p>Case5</p>
</div>
</a>
<a href="case1.html">
<div>
<p>Case6</p>
</div>
</a>
<a href="case1.html">
<div>
<p>Case7</p>
</div>
</a>
<a href="case1.html">
<div>
<p>Case8</p>
</div>
</a>
</div>
</section>
</main>
<div class="wrapper">
<footer>
<ul class="footer-links-main">
<li><a href="">Home</a></li>
<li><a href="">Cases</a></li>
<li><a href="">Portfolio</a></li>
<li><a href="">About me</a></li>
<li><a href="">Contact</a></li>
</ul>
<ul class="footer-links-cases">
<li><p>Latest cases</p></a></li>
<li><a href="">MALING SHAOLIN - WEB DEVELOPMENT</a></li>
<li><a href="">EXCELLENTO - WEB DEVELOPMENT, SEO</a></li>
<li><a href="">MMTUTS - YOUTUBE CHANNEL</a></li>
<li><a href="">WELTEC - VIDEO PRODUCTION</a></li>
</ul>
<div class="footer-sm">
<!--Of course add the actual links to the social media-->
<a href="">
<img src="img/youtube.png" alt="youtube icon">
</a>
<a href="">
<img src="img/twitter.png" alt="twitter icon">
</a>
<a href="">
<img src="img/facebook.png" alt="facebook icon">
</a>
</div>
</footer>
</div>
</body>
</html>