Skip to content

CalebH1208/MizzouRacingWeb

Repository files navigation

Updating this website

Sponsors

Navigate to src/app/ev-sponsors/ev-sponsors.component.html (replace ev-sponsors with ic-sponsors to update ic sponsor page).

<div class="sponsor-card">
    <a href="#"><img src="../../assets/sponsors/Altium.png" alt="Sponsor 1 Logo"></a>
    <h3>Sponsor 4</h3>
    <p>Funding</p>
</div>

Each sponsor is represented by the above block of code.

  • To modify the logo image, edit the path inside of src.
  • To modify the sponsors url, edit the path inside of href.
  • To modify the name of the sponsor, edit the text inside of h3.
  • To modify the contribution of the sponsor, edit the text inside of p.



<div class="small-sponsor-card">
    <img src="../../assets/sponsors/zoltek.png" alt="Sponsor 1 Logo">
</div>

Each smaller sponsor is represented by the above block of code.

  • To modify the logo image, edit the path inside of src.

If you would like to add a new sponsor, copy and paste the respective block of code.

How to update the site with your changes.

  1. Initialize Git
    If you haven't already initialized Git in your project, run this command to start version control in your project directory:
    git init
  2. Add the Remote Origin:
    Add the repository URL as the remote origin:
    git remote add origin https://github.com/aidanPuricelli/mizzou-racing.git
  3. Check Git Status
    Check the status of your repository to see which files have changed:
    git status
  4. Stage Your Changes
    Add the changes to the staging area (all modified files):
    git add .
  5. Commit Your Changes
    Commit your staged changes with a descriptive message:
    git commit -m "Describe what changes you made"
  6. Push Your Changes
    Push the changes to the main branch of the repository:
    git push origin master

Or, you can edit files directly through the Github page.

About

repository for MizzouRacing.com

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors