File tree Expand file tree Collapse file tree 3 files changed +60
-0
lines changed
Expand file tree Collapse file tree 3 files changed +60
-0
lines changed Original file line number Diff line number Diff line change 1+ # DieCoding Logo
2+
3+ Welcome to the DieCoding Logo repository! This repository contains the official DieCoding logo assets.
4+
5+ ## Logo Versions
6+
7+ ### Version 2
8+
9+ #### Static Icon
10+
11+ ![ DieCoding Static Icon] ( v2/icon.svg )
12+
13+ #### Animated Icon
14+
15+ ![ DieCoding Animated Icon] ( v2/icon-animate.svg )
16+
17+ ## Files
18+
19+ - ` v2/icon.svg ` - Static version of the DieCoding logo
20+ - ` v2/icon-animate.svg ` - Animated version of the DieCoding logo
21+
22+ ## Usage
23+
24+ You can use these logo files in your projects. Both SVG formats are scalable and perfect for web and print applications.
25+
26+ ### HTML Usage
27+
28+ ``` html
29+ <!-- Static Icon -->
30+ <img src =" v2/icon.svg" alt =" DieCoding Logo" width =" 100" height =" 100" >
31+
32+ <!-- Animated Icon -->
33+ <img src =" v2/icon-animate.svg" alt =" DieCoding Animated Logo" width =" 100" height =" 100" >
34+ ```
35+
36+ ### CSS Background Usage
37+
38+ ``` css
39+ /* Static Icon */
40+ .logo-static {
41+ background-image : url (' v2/icon.svg' );
42+ background-size : contain ;
43+ background-repeat : no-repeat ;
44+ }
45+
46+ /* Animated Icon */
47+ .logo-animated {
48+ background-image : url (' v2/icon-animate.svg' );
49+ background-size : contain ;
50+ background-repeat : no-repeat ;
51+ }
52+ ```
53+
54+ ## License
55+
56+ Please check the [ LICENSE] ( LICENSE ) file for usage terms and conditions.
57+
58+ ---
59+
60+ ** DieCoding** - Coding, Learning, Growing Together
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments