forked from Ange0/tailwind-tiktok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome_New.html
47 lines (45 loc) · 1.13 KB
/
home_New.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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<title>TikTok header</title>
<script>
tailwind.config = {
theme: {
extend: {
width: {
'356': '356px',
},
height: {
'130': '34rem',
},
spacing: {
'430px': '430px',
}
}
}
}
</script>
</head>
<body style="font-family:ProximaNova, Arial, Tahoma, PingFangSC, sans-serif">
<!-- Header -->
<div class="border border-b h-16 ">
<div class="bg-red-100 mx-96 px-8 h-full">
dd
</div>
</div>
<!-- Header -->
<!-- Content -->
<div class="bg-red-100 mx-96 px-8">
<div class="relative">
<div class="flex flex-col bg-green-200 w-[356px] h-screen fixed">
dd
</div>
</div>
</div>
<!--/ Content -->
</body>
</html>