rioanggara commited on
Commit
02869f2
·
1 Parent(s): bb01a01

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -10
README.md CHANGED
@@ -1,10 +1,81 @@
1
- ---
2
- title: README
3
- emoji: 📉
4
- colorFrom: indigo
5
- colorTo: blue
6
- sdk: static
7
- pinned: false
8
- ---
9
-
10
- Edit this `README.md` markdown file to author your organization card.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Minimalist Organization Card</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ font-family: Arial, sans-serif;
12
+ background: linear-gradient(45deg, #572E93, #3B90FF, #BD0E0E);
13
+ color: white;
14
+ text-align: center;
15
+ }
16
+
17
+ .card {
18
+ background: rgba(255, 255, 255, 0.1);
19
+ border-radius: 5px;
20
+ padding: 20px;
21
+ margin: 20px auto;
22
+ width: 80%;
23
+ max-width: 400px;
24
+ }
25
+
26
+ .logo {
27
+ width: 80px;
28
+ height: 80px;
29
+ border-radius: 50%;
30
+ object-fit: cover;
31
+ margin-bottom: 20px;
32
+ }
33
+
34
+ .grid {
35
+ display: grid;
36
+ grid-template-columns: repeat(2, 1fr); /* 2 columns for 4 items */
37
+ gap: 10px;
38
+ padding: 20px;
39
+ justify-content: center; /* Center the grid */
40
+ max-width: 600px; /* Or adjust to fit the size of your images */
41
+ margin: auto; /* Center the grid container */
42
+ }
43
+
44
+ .grid img {
45
+ width: 100%;
46
+ border-radius: 5px;
47
+ box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
48
+ }
49
+
50
+ a {
51
+ color: #BD0E0E;
52
+ text-decoration: none;
53
+ }
54
+
55
+ @media (max-width: 600px) {
56
+ .card {
57
+ width: 95%;
58
+ }
59
+ }
60
+ </style>
61
+ </head>
62
+ <body>
63
+
64
+ <div class="card">
65
+ <img src="path/to/your-logo.png" alt="Organization Logo" class="logo">
66
+ <h2>Your Organization Name</h2>
67
+ <p>Co-navigating students, including non-coders, in AI and technology impact.</p>
68
+ <p><a href="https://yourwebsite.com">Website</a> | <a href="https://yourtwitterhandle">Twitter</a></p>
69
+ </div>
70
+
71
+ <div class="grid">
72
+ <!-- Replace with actual Instagram posts or images -->
73
+ <img src="path/to/image1.jpg" alt="Instagram Post 1">
74
+ <img src="path/to/image2.jpg" alt="Instagram Post 2">
75
+ <img src="path/to/image3.jpg" alt="Instagram Post 3">
76
+ <img src="path/to/image4.jpg" alt="Instagram Post 4">
77
+ <!-- Exactly four items as requested -->
78
+ </div>
79
+
80
+ </body>
81
+ </html>