Welcome to the SVG File Creation project! This repository demonstrates how to create SVG files using pure code, without the need for any editing software.
When you get bored but don’t want to stop coding or want to stay in the mood, you can write your own SVG file. This project was inspired by a desire to work on editing SVG/PNG files to implement some generic functionality, which led to creating these examples purely through code.
- Pure code generation of SVG files
- No use of external editing software
- Examples of basic to advanced SVG functionalities
- Basic knowledge of SVG and coding
- A code editor (e.g., Visual Studio Code, Sublime Text)
Clone the repository to your local machine using the following command:
git clone https://github.com/yourusername/svg-file-creation.gitNavigate to the project directory:
cd svg-file-creationOpen the code files in your favorite code editor and explore the examples provided. You can run the code in your browser to see the SVG output.
Here is a simple example of creating a basic SVG file:
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" />
</svg>We welcome contributions! Please fork the repository and submit pull requests for any improvements or new features.
This project is licensed under the MIT License - see the LICENSE file for details.
- Inspired by a passion for coding and creating visual elements programmatically.
Happy coding! 😎