-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 1.77 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
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="webpage, website">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Flexbox</title>
<link rel="stylesheet" href="app/css/flexbox.css">
</head>
<body>
<div class="container"><!--wrapper-->
<header>
<div class="logo">
<img src="app/img/logo.jpg" width="150" alt="">
<a href="">CHECHÉ PECH</a>
</div>
<nav>
<a href="">HOME</a>
<a href="">BLOG</a>
<a href="">PROJECTS</a>
<a href="">CONTACT</a>
</nav>
</header><!-- /header -->
<section class="main"> <!--Content-->
<article>
<h2 class="title">Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore, placeat totam praesentium. Ex odio accusantium sapiente, rem necessitatibus, debitis, quam dolor iusto unde dignissimos fuga excepturi facere repellendus, minus repudiandae!</p>
</article>
<article>
<h2 class="title">Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore, placeat totam praesentium. Ex odio accusantium sapiente, rem necessitatibus, debitis, quam dolor iusto unde dignissimos fuga excepturi facere repellendus, minus repudiandae!</p>
</article>
</section>
<aside>
<div class="widget">
<div class="image"></div>
</div>
<div class="widget">
<div class="image"></div>
</div>
</aside>
<footer>
<section class="links">
<a href="">HOME</a>
<a href="">BLOG</a>
<a href="">PROJECTS</a>
<a href="">CONTACT</a>
</section>
<div class="social">
<a href="">FB</a>
<a href="">TW</a>
<a href="">IG</a>
</div>
</footer>
</div>
</body>
</html>