-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 858 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 858 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Let's bake a pie</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<style media="screen">
body{
background-color:#BBDEFB;
margin:20px;
padding:20px;
}
h1{font-size:100px; color:cyan ;background-color:#FFEB3B;}
p{
font-family: 'Roboto Mono', monospace;
font-size: 28px;
align-items: center;
}
</style>
</head>
<body>
<h1 >Let's Bake A Pie</h1>
<p>Baking a pie has been a herculian task but welcome to our website.It's been made easy.<br>Click on the pic to find more.</p>
<a href="pieee.html">
<img src="pie1.jpg" alt="Pie's pic" style="width:700px;height:300px;"></a>
</body>
</html>