-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixed-layout.html
41 lines (37 loc) · 1.44 KB
/
fixed-layout.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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<link href="styles/fixed-layout.css" rel="stylesheet">
<!-- <link rel="stylesheet" type="text/css" href="styles/layout.css" media="(max-width: 400px)"> -->
</head>
<body>
<div id="container">
<div class="header">
</div>
<div id="nav">
</div>
<div class="sidebar">
</div>
<div class="main">
<div id="box">
<div style="background-color:red;color:green;text-align:center">
hello world
<a href="layout.html" target="_blank " style="display:block;text-align:center">
<img src="images/me.jpg" alt="my photo" width="100px">
<img src="images/me.jpg" alt="my photo" style="max-width:100%;max-height:100%">
</a>
</div>
<p>In later times the place became a municipium,
and remains of an unimportant Roman town still exist upon the hill known
as Monte di Canne. In the Middle Ages, probably after the destruction of
Canosa di Puglia in the 9th century, it became a bishopric (see below),
and again saw military action in the second battle of Cannae,
twelve centuries after the more famous one (1018).</p>
</div>
</div>
</div>
</body>
</html>