-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (52 loc) · 2.4 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>UI</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/app.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<header>
<h1 class="header-title">Portfolio 1-Clmn Blog Style</h1>
</header>
<section class="content-section">
<div class="row portfolio-wrapper col-12">
<div class="portfolio-wrapper--image col-md-4">
<img src="assets/img/img_chania.jpg" class="portfolio-wrapper--image__pic" alt="">
</div>
<div class="portfolio-wrapper--description col-md-8">
<div class="portfolio-wrapper--description__txt">
<p>
Sed ut perspiciatis unde omnis iste natus error sit unde omnis iste
</p>
<label>Label 1</label>
<label>Label 2</label>
</div>
<button class="btn btn-default portfolio-wrapper--description__btn">ONTDEK MEER</button>
</div>
</div>
<div class="row portfolio-wrapper col-12">
<div class="portfolio-wrapper--image col-md-4">
<img src="assets/img/img_chania.jpg" class="portfolio-wrapper--image__pic" alt="">
</div>
<div class="portfolio-wrapper--description col-md-8">
<div class="portfolio-wrapper--description__txt">
<p>
Sed ut perspiciatis unde omnis iste natus error sit unde omnis iste
</p>
<label>Label 1</label>
<label>Label 2</label>
</div>
<button class="btn btn-default portfolio-wrapper--description__btn">ONTDEK MEER</button>
</div>
</div>
</section>
</div>
</body>
</html>