hardlyworking commited on
Commit
2adf03d
·
verified ·
1 Parent(s): 972fd4f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -1
README.md CHANGED
@@ -6,5 +6,76 @@ colorTo: yellow
6
  sdk: static
7
  pinned: false
8
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
- Edit this `README.md` markdown file to author your organization card.
 
6
  sdk: static
7
  pinned: false
8
  ---
9
+ <!DOCTYPE html>
10
+ <html lang="en">
11
+ <head>
12
+ <meta charset="UTF-8">
13
+ <meta name="viewport" content="width=device-width, initial-scale=1">
14
+ <title>Greener Pastures</title>
15
+ <style>
16
+ body {
17
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
18
+ background-color: #f0f4f1;
19
+ display: flex;
20
+ justify-content: center;
21
+ align-items: center;
22
+ height: 100vh;
23
+ margin: 0;
24
+ }
25
+ .card {
26
+ background-color: #ffffff;
27
+ border-radius: 16px;
28
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
29
+ width: 320px;
30
+ padding: 24px;
31
+ text-align: center;
32
+ transition: transform 0.3s ease;
33
+ }
34
+ .card:hover {
35
+ transform: translateY(-5px);
36
+ }
37
+ .logo {
38
+ width: 80px;
39
+ height: 80px;
40
+ margin-bottom: 16px;
41
+ border-radius: 50%;
42
+ object-fit: cover;
43
+ border: 2px solid #a3d9a5;
44
+ }
45
+ .name {
46
+ font-size: 1.5em;
47
+ font-weight: bold;
48
+ color: #2e7d32;
49
+ margin-bottom: 8px;
50
+ }
51
+ .tagline {
52
+ font-size: 0.95em;
53
+ color: #666;
54
+ margin-bottom: 16px;
55
+ }
56
+ .button {
57
+ display: inline-block;
58
+ padding: 10px 20px;
59
+ background-color: #66bb6a;
60
+ color: #fff;
61
+ border: none;
62
+ border-radius: 8px;
63
+ text-decoration: none;
64
+ font-weight: bold;
65
+ transition: background-color 0.3s ease;
66
+ }
67
+ .button:hover {
68
+ background-color: #4caf50;
69
+ }
70
+ </style>
71
+ </head>
72
+ <body>
73
+ <div class="card">
74
+ <img src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg" alt="Greener Pastures Logo" class="logo">
75
+ <div class="name">Greener Pastures</div>
76
+ <div class="tagline">Machine learning for a better tomorrow.</div>
77
+ <a class="button" href="https://huggingface.co/GreenerPastures" target="_blank">Visit on Hugging Face</a>
78
+ </div>
79
+ </body>
80
+ </html>
81