forked from julianguyen/workshop-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
85 lines (75 loc) · 2.14 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Welcome to Foo Bar's Site - Portfolio</title>
<link rel="stylesheet" type="text/css" href="template.css">
</head>
<body>
<header>
<div id="header-title">
<a href="index.html">Foo Bar's Site</a>
</div>
<nav>
<ul>
<li><a href="index.html#about">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="#">Resume</a></li>
</ul>
</nav>
</header>
<main>
<section id="portfolio">
<div class="table">
<div class="table-row">
<div class="table-cell">
<img src="http://lorempixel.com/output/cats-q-c-500-500-2.jpg" alt="Portfolio cat" class="medium-rounded">
<br>
Hello
</div>
<div class="table-cell">
<img src="http://lorempixel.com/output/cats-q-c-500-500-2.jpg" alt="Portfolio cat" class="medium-rounded">
<br>
Hola
</div>
<div class="table-cell">
<img src="http://lorempixel.com/output/cats-q-c-500-500-2.jpg" alt="Portfolio cat" class="medium-rounded">
<br>
Bonjour
</div>
<div class="table-cell">
<img src="http://lorempixel.com/output/cats-q-c-500-500-2.jpg" alt="Portfolio cat" class="medium-rounded">
<br>
Gutentag
</div>
</div>
<div class="table-row">
<div class="table-cell">
<img src="http://lorempixel.com/output/cats-q-c-500-500-2.jpg" alt="Portfolio cat" class="medium-rounded">
<br>
Xin chao
</div>
<div class="table-cell">
<img src="http://lorempixel.com/output/cats-q-c-500-500-2.jpg" alt="Portfolio cat" class="medium-rounded">
<br>
Ni hao
</div>
<div class="table-cell">
<img src="http://lorempixel.com/output/cats-q-c-500-500-2.jpg" alt="Portfolio cat" class="medium-rounded">
<br>
Kumusta
</div>
<div class="table-cell">
<img src="http://lorempixel.com/output/cats-q-c-500-500-2.jpg" alt="Portfolio cat" class="medium-rounded">
<br>
Halo juga
</div>
</div>
</div>
</section>
</main>
<footer>
Made by Foo Bar
</footer>
</body>
</html>