├── first.html ├── images ├── alltimebroken.png ├── banner.png ├── banner2.png ├── evergreen.png ├── excited.png ├── icon.png ├── icon2.png ├── innocent.png ├── logo.png ├── occasional.png └── playboy.png ├── index.html └── style.css /first.html: -------------------------------------------------------------------------------- 1 | 17 | Look mama!! I am building website 18 |

Zuckerberg I can build website as well

19 |

Myself I can build website as well

20 |

Google I know your secret

21 | 22 |

paragraph

23 | 24 |

DOn't do something with APple. DOn't do something with APple. DOn't do something with APple. DOn't do something with APple. DOn't do something with APple.

25 | 26 | HTML ==> Hypertext Markup Language 27 | heading 28 |

Elon Musk with a face mask

29 |
30 |

Jeff bezon you are in AWS

31 |

I like Amazon jungle

32 |
33 |

Bill Gates

34 | -------------------------------------------------------------------------------- /images/alltimebroken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/alltimebroken.png -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/banner.png -------------------------------------------------------------------------------- /images/banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/banner2.png -------------------------------------------------------------------------------- /images/evergreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/evergreen.png -------------------------------------------------------------------------------- /images/excited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/excited.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/icon.png -------------------------------------------------------------------------------- /images/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/icon2.png -------------------------------------------------------------------------------- /images/innocent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/innocent.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/logo.png -------------------------------------------------------------------------------- /images/occasional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/occasional.png -------------------------------------------------------------------------------- /images/playboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHero1/company-website/f7744653d23c5b736693f1356713089bd3a7a937/images/playboy.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Heart Mechanic 7 | 8 | 9 | 10 |
11 |
12 |

We fix
broken heart

13 |
14 |
15 | 16 |
17 |
18 |
19 |
20 |

Our Services

21 |
22 |
23 | 24 |

All time broken heart

25 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Amet enim culpa inventore porro voluptatum. Facilis ratione omnis minus possimus dolores?

26 |
27 |
28 | 29 |

Occasional broken heart

30 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Amet enim culpa inventore porro voluptatum. Facilis ratione omnis minus possimus dolores?

31 |
32 |
33 | 34 |

Ever green broken heart

35 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Amet enim culpa inventore porro voluptatum. Facilis ratione omnis minus possimus dolores?

36 |
37 |
38 |
39 |
40 |

Successful Customers

41 |
42 |
43 | 44 |

Fixed Innocent broken heart

45 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Amet enim culpa inventore porro voluptatum. Facilis ratione omnis minus possimus dolores?

46 |
47 |
48 | 49 |

Fixed Excited broken heart

50 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Amet enim culpa inventore porro voluptatum. Facilis ratione omnis minus possimus dolores?

51 |
52 |
53 | 54 |

Fixed Playboy broken heart

55 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Amet enim culpa inventore porro voluptatum. Facilis ratione omnis minus possimus dolores?

56 |
57 |
58 |
59 |
60 | 63 | 64 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | font-family: 'roboto', 'ariel'; 3 | } 4 | h1{ 5 | font-size: 70px; 6 | } 7 | h2{ 8 | font-size: 50px; 9 | } 10 | header{ 11 | display: flex; 12 | align-items: center; 13 | justify-content: space-evenly; 14 | } 15 | .color-red{ 16 | color:rgb(243, 57, 57); 17 | } 18 | .text-center{ 19 | text-align: center; 20 | } 21 | .services{ 22 | display: flex; 23 | justify-content: space-evenly; 24 | } 25 | .item{ 26 | width: 25%; 27 | padding: 20px; 28 | border-radius: 10px; 29 | box-shadow: 10px 10px 40px lightgray; 30 | } --------------------------------------------------------------------------------