Install the Rails gem if you haven't done so before
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Loop Control Structure | |
| ## Set a variable "counter" to zero | |
| counter = 1 | |
| ## Iterate through the loop as long as "counter" is less than 5 | |
| while counter <=5 do | |
| ## Print "Get your driver license with LicenseGuru" | |
| puts "Get your driver license with LicenseGuru" | |
| ## Add 1 to the current value of counter | |
| counter+=1 | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Condition Control Structure | |
| ## Set a new varibale age to 15. | |
| age = 15 | |
| ## Then another varibale required_age to 16. | |
| required_age = 16 | |
| ## check if the user age is less than 16 | |
| if age < 16 | |
| ## If the condition is checked, print the message "Sorry, you can't pass the driver license!" to the user | |
| puts "Sorry, you can't pass the driver license!" | |
| else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!-- Metadata goes here --> | |
| </head> | |
| <body> | |
| <!-- Page content goes here --> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *{ | |
| box-sizing: border-box; max-width: 100%; | |
| } | |
| body{ | |
| font-size: 1.25rem; padding-bottom: 70px; | |
| background: #fff; | |
| } |
This is project is done by Ibrahim Amadou & Wilfried Canirinka for Microverse Program. We've learned HTML and CSS Basics while doing remote collaboration.
Technical Tools

