Skip to content

Instantly share code, notes, and snippets.

View acxgray's full-sized avatar

acxgray

  • Makati. Philippines
View GitHub Profile
class Car{
int year;
String make;
double speed;
public Car(int y,String m,double s){
this.year = y;
this.make = m;
this.speed = s;
}
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700");
@import url("https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
* {
margin: 0;
border: 0;
box-sizing: border-box;
}
:root {