-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite2.html
More file actions
55 lines (43 loc) · 1.41 KB
/
website2.html
File metadata and controls
55 lines (43 loc) · 1.41 KB
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>Website Layout</title>
<link rel="stylesheet" type="text/css" href="website2.css">
</head>
<body>
<div class="header">
<h1>My website</h1>
<h4>with a flexible layout</h4>
</div>
<nav>
<a href="layout.html" target="_blank">Link</a>
<a href="">Link</a>
<a href="">Link</a>
<a href="">Link</a>
</nav>
<div class="content">
<div class="sidebar">
<h2>About Me</h2>
<h4>Photo of me</h4>
<img src="" width="400px" height="300px">
<p>this is really a very challenging one but I am never the one to give up.</p>
<img src="" width="400px" height="50px">
<img src="" width="400px" height="50px">
<img src="" width="400px" height="50px">
</div>
<div class="main">
<h1>TITLE HEADING</h1>
<h4>Title description 15th feb,2020</h4>
<img src="" width="850px" height="200px">
<p>this picture describes nothing, but for the luck of having nothing better to do i will do this and try to finis it before the time is up this is absolute nonesense</p>
<h1>TITLE HEADING</h1>
<h4>title description 14th feb, 1990</h4>
<img src="" width="850px" height="200px">
<p>Are you fucking serious i have to repeat this stupid shit again what the hell is wrong with you.this is actually starting to faustrate the shit out of me. CSS is not making tis fun at all.</p>
</div>
</div>
<div class="footer">
<h3>footer</h3>
</div>
</body>
</html>