forked from sylvercodez/Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid.html
47 lines (44 loc) · 1.45 KB
/
grid.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="grid.css">
</head>
<body>
<div style="background-color: #008000; padding: 20px;">
<h3 style="text-align: center;">
this is just a h4 content.
</h3>
</div>
<div class="head">
<h1>header</h1>
<p>i dontr what to write here but its fine</p>
</div>
<div class="nav">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
<div class="row">
<div class="left">
<h3>About me</h3>
<p>Photo of my house</p>
<div class="image" style="background-color: gray; height: 200px;">Image</div>
<p> Some text about me in culpa qui officia deserunt mollit anim..</p>
<h2 class="text">More Text</h2>
<p> Lorem ipsum dolor sit ame.</p>
</div>
<div class="right">
<h3>My JOB</h3>
<p>Title description, Dec 7, 2017</p>
<div class="box">
<div class="image" style="background-color: green; height: 200px;">Image</div>
<div class="image box2" style="background-color: yellow; height: 200px;">Image</div>
</div>
</div>
</div>
</body>
</html>