forked from edemaukabi/practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.04 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./output.css" />
</head>
<body>
<p>I added this as a new change and commit from github</p>
<div class="flex bg-black">
<div class="container bg-green-600 w-40">
<h1 class="">Heading One</h1>
<h2>Heading Two</h2>
<p class="text-2xl md:text-red-600">Hello and Welcome</p>
<h1>This is another H1</h1>
</div>
<div class="container bg-yellow-600 w-40">
<h1 class="">Heading One</h1>
<h2>Heading Two</h2>
<p class="text-2xl md:text-red-600">Hello and Welcome</p>
<h1>This is another H1</h1>
</div>
<div class="container bg-red-600 w-40 text-big md:text-small md:w-12">
<h1 class="">Heading One</h1>
<h2>Heading Two</h2>
<p class="text-2xl md:text-red-600">Hello and Welcome</p>
<h1>This is another H1</h1>
</div>
</div>
</body>
</html>