-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
49 lines (47 loc) · 899 Bytes
/
Copy pathsample.html
File metadata and controls
49 lines (47 loc) · 899 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Sample Design</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.frame {
width: 400px;
border: 2px solid #333;
padding: 10px;
position: relative;
}
.header {
background-color: #ffcc00;
padding: 10px;
font-weight: bold;
font-size: 20px;
}
.image {
margin-top: 10px;
}
img {
max-width: 100%;
height: auto;
}
.footer {
margin-top: 10px;
font-size: 12px;
color: #555;
}
</style>
</head>
<body>
<div class="frame">
<div class="header">Sample Frame Header</div>
<div class="image">
<img src="https://via.placeholder.com/400x200.png?text=Sample+Image" alt="Sample" />
</div>
<div class="footer">Footer info here</div>
</div>
</body>
</html>