-
Notifications
You must be signed in to change notification settings - Fork 0
/
framework-test.html
50 lines (48 loc) · 1.51 KB
/
framework-test.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
<html>
<head>
<title>Framework Test</title>
<link rel="stylesheet" type="text/css" href="css/base.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="grid">
<div class="row">
<div class="col-6 col-m-6 header">
<img src="http://placehold.it/100x100">
</div>
<div class="col-6 col-m-6 header">
<h1>Header 1</h1>
<p>z.b. Beruf etc.</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-12 col-m-12" >
<img class="banner" src="http://placehold.it/1000x350">
</div>
</div>
<div class="row">
<div class="col-12 col-m-12">
<h2>Header 2</h2>
</div>
</div>
<div class="row projects">
<div class="col-4 col-m-6 projects">
<img src="http://placehold.it/350x100">
<h3>Title 1</h3>
<a href="#">Link to Project</a>
</div>
<div class="col-4 col-m-6 projects">
<img src="http://placehold.it/350x100">
<h3>Title 2</h3>
<a href="#">Link to Project</a>
</div>
<div class="col-4 col-m-6 projects">
<img src="http://placehold.it/350x100">
<h3>Title 3</h3>
<a href="#">Link to Project</a>
</div>
</div>
</div>
</body>
</html>