-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (52 loc) · 1.85 KB
/
index.html
File metadata and controls
61 lines (52 loc) · 1.85 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
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Hello Launchcoders!</title>
<meta name = "description" content = "This is practice page">
<meta name = "boyfriend" content="Santhu">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style>
body{
background-color: cornflowerblue;
}
h1{
color:blueviolet;
}
h2{
color: red;
}
p{
font-size: 12px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
</style>
<script>
//alert("Hello from script");
</script>
</head>
<body>
<!-- <p id="p1" name="p1" class="lead">First paragraph: Here HTML Tags</p>
<p id="p2" name="p2second" class="lead">Second paragraph:</p> -->
<div id="header">
<h1>Wired Brain Coffee</h1>
<h2>Coffee to keep your brain wired</h2>
<h2>Coffee to keep your brain wired-----------</h2>
</div>
<div id="body">
<p>Coffee has long been known to provide a boost to brain activity and increase blood flow</p>
<p>Another dubious statement about coffee to try and sell it.</p>
</div>
<h2 style="color: green;">Testimonials</h2>
<hr />
<blockquote><abbr title="Wired Brain">WB</abbr> coffe makes my brain feel like it is on fire</blockquote>
<cite>Prashanthi <Santhosh, STL></cite>
<p>
<q>I'm productive when i drink this coffee!</q>
<br />
<cite>Karthikeya <Chicago, IL></cite>
</p>
<div id="footer">
© Prashanthi 2020
</div>
</body>
</html>