-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbasic.html
More file actions
27 lines (25 loc) · 798 Bytes
/
Copy pathbasic.html
File metadata and controls
27 lines (25 loc) · 798 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
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
body {
background: linear-gradient(to bottom, #ffcccc, #ff99cc);
color: white;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
}
p {
text-align: center;
font-size: 18px;
}
</style>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a basic HTML website.</p>
<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="800" height="450" src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Fboard%2FtXggqmKuhw9zHJW9TRsjNz%2FWelcome-to-FigJam%3Fnode-id%3D0-1%26t%3D4lzI0FpGzVzVCxnI-1" allowfullscreen></iframe>
</body>
</html>