├── CSS ├── images │ ├── CSS - My Site Images │ │ ├── brainstorming.png │ │ ├── chillies.png │ │ ├── cloud.png │ │ ├── coding.png │ │ ├── computer.png │ │ ├── linkeidn_dp-modified-removebg-preview.png │ │ ├── linkeidn_dp-modified.png │ │ └── mountain.png │ └── __MACOSX │ │ └── CSS - My Site Images │ │ ├── ._angela.png │ │ ├── ._chillies.png │ │ └── ._computer.png └── styles.css ├── README.md ├── favicon.ico └── index.html /CSS/images/CSS - My Site Images/brainstorming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/CSS - My Site Images/brainstorming.png -------------------------------------------------------------------------------- /CSS/images/CSS - My Site Images/chillies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/CSS - My Site Images/chillies.png -------------------------------------------------------------------------------- /CSS/images/CSS - My Site Images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/CSS - My Site Images/cloud.png -------------------------------------------------------------------------------- /CSS/images/CSS - My Site Images/coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/CSS - My Site Images/coding.png -------------------------------------------------------------------------------- /CSS/images/CSS - My Site Images/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/CSS - My Site Images/computer.png -------------------------------------------------------------------------------- /CSS/images/CSS - My Site Images/linkeidn_dp-modified-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/CSS - My Site Images/linkeidn_dp-modified-removebg-preview.png -------------------------------------------------------------------------------- /CSS/images/CSS - My Site Images/linkeidn_dp-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/CSS - My Site Images/linkeidn_dp-modified.png -------------------------------------------------------------------------------- /CSS/images/CSS - My Site Images/mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/CSS - My Site Images/mountain.png -------------------------------------------------------------------------------- /CSS/images/__MACOSX/CSS - My Site Images/._angela.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/__MACOSX/CSS - My Site Images/._angela.png -------------------------------------------------------------------------------- /CSS/images/__MACOSX/CSS - My Site Images/._chillies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/__MACOSX/CSS - My Site Images/._chillies.png -------------------------------------------------------------------------------- /CSS/images/__MACOSX/CSS - My Site Images/._computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/CSS/images/__MACOSX/CSS - My Site Images/._computer.png -------------------------------------------------------------------------------- /CSS/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #40514E; 3 | margin: 0; 4 | text-align: center; 5 | font-family: 'Merriweather', serif; 6 | font-size: 125%; 7 | } 8 | 9 | h1 { 10 | color: #66BFBF; 11 | font-size: 5.625rem; 12 | margin: 50px auto 0 auto; 13 | font-family: 'Sacramento', cursive; 14 | font-weight: normal; 15 | } 16 | 17 | h2 { 18 | color: #66BFBF; 19 | font-family: 'Montserrat', sans-serif; 20 | font-size: 2.5rem; 21 | font-weight: bolder; 22 | padding-bottom: 10px; 23 | } 24 | 25 | h3 { 26 | color: #11999E; 27 | font-family: 'Montserrat', sans-serif; 28 | } 29 | p { 30 | line-height: 2; 31 | } 32 | hr { 33 | border: dotted #EAF6F6 6px; 34 | border-bottom: none; 35 | width: 4%; 36 | margin: 100px auto; 37 | } 38 | a{ 39 | color: #11999E; 40 | font-family: 'Montserrat', sans-serif; 41 | margin: 10px 20px; 42 | text-decoration: none; 43 | } 44 | a:hover { 45 | color: #EAF6F6; 46 | } 47 | .top-container { 48 | background-color: #E4F9F5; 49 | position: relative; 50 | padding-top: 100px; 51 | } 52 | 53 | .middle-container { 54 | margin: 100px 0; 55 | } 56 | 57 | .bottom-container { 58 | background-color: #66BFBF; 59 | padding: 50px 0 20px; 60 | } 61 | .copyright { 62 | color: #EAF6F6; 63 | font-size: 0.75rem; 64 | padding: 20px 0; 65 | } 66 | .pro { 67 | text-decoration: underline; 68 | } 69 | 70 | .bottom-cloud { 71 | position: absolute; 72 | left: 250px; 73 | bottom: 300px; 74 | } 75 | 76 | .top-cloud { 77 | position: absolute; 78 | right: 300px; 79 | top: 40px; 80 | } 81 | .skill-row { 82 | width: 50%; 83 | margin: 100px auto 100px auto; 84 | text-align: left; 85 | } 86 | .code-img { 87 | width: 20%; 88 | float: left; 89 | margin-right: 30px; 90 | } 91 | 92 | .system-img { 93 | width: 20%; 94 | float: right; 95 | margin-left: 30px; 96 | } 97 | .contact-message { 98 | width: 40%; 99 | margin: 40px auto 60px; 100 | } 101 | .btn { 102 | background: #11cdd4; 103 | background-image: -webkit-linear-gradient(top, #11cdd4, #11999e); 104 | background-image: -moz-linear-gradient(top, #11cdd4, #11999e); 105 | background-image: -ms-linear-gradient(top, #11cdd4, #11999e); 106 | background-image: -o-linear-gradient(top, #11cdd4, #11999e); 107 | background-image: linear-gradient(to bottom, #11cdd4, #11999e); 108 | -webkit-border-radius: 8; 109 | -moz-border-radius: 8; 110 | border-radius: 8px; 111 | font-family: 'Montserrat', sans-serif; 112 | color: #ffffff; 113 | font-size: 20px; 114 | padding: 10px 20px 10px 20px; 115 | text-decoration: none; 116 | } 117 | 118 | .btn:hover { 119 | background: #30e3cb; 120 | background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad); 121 | background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad); 122 | background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad); 123 | background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad); 124 | background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad); 125 | text-decoration: none; 126 | } 127 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CV_CSS -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Subin-Vidhu/CV_CSS/d628a08aa348425c6f7899bf000976ceaaabadc1/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Subin S 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | cloud-img 17 |

I'm Subin

18 |

a programmer.

19 | cloud-img 20 | mountain-img 21 |
22 |
23 |
24 | profile_pic 25 |

Hello.

26 |

I am someone who is trying to be better each day.

27 |
28 |
29 |
30 |

My Skills.

31 |
32 | computer-pic 33 |

ML Engineer

34 |

Currently working as a ML Engineer for Aramis.

35 |
36 |
37 | computer-pic 38 |

Web Development

39 |

Learning Web development from courses to become a Full Stack Developer.

40 |
41 |
42 |
43 |
44 |

Get In Touch

45 |

Feel free to contact me.

46 |

Email and the websites I commonly use are shared.

47 | CONTACT ME 48 |
49 |
50 | 51 | 52 |
53 | LinkedIn 54 | Github 55 | 56 |

© 2022 Subin Vidhu.

57 |
58 | 59 | 60 | 61 | 62 | --------------------------------------------------------------------------------