├── README.md ├── css ├── m.png └── style.css ├── ico ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png └── favicon.ico ├── images ├── 1.PNG ├── 2.PNG ├── 3.PNG ├── 4.PNG ├── bg.gif ├── p1.png └── p2.jpg └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # Portofolio-Website-v2 2 | A Simple Html & Css Portfolio page 3 |
4 |
5 | 6 |
7 |
8 |
9 |
10 | 11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | -------------------------------------------------------------------------------- /css/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/css/m.png -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,800&display=swap'); 2 | 3 | * { 4 | padding: 0; 5 | margin: 0; 6 | box-sizing: border-box; 7 | scroll-behavior: smooth; 8 | font-family: Poppins, sans-serif; 9 | } 10 | 11 | header { 12 | background-color: #f0f0f0; 13 | position: fixed; 14 | display: flex; 15 | justify-content: space-between; 16 | align-items: center; 17 | z-index: 1000; 18 | width: 100%; 19 | padding: 10px 150px; 20 | } 21 | 22 | .logo { 23 | text-decoration: none; 24 | color: #3a6cf4; 25 | font-size: 1.8em; 26 | font-weight: 800; 27 | text-transform: uppercase; 28 | } 29 | 30 | .navigation a { 31 | text-decoration: none; 32 | color: #3a6cf4; 33 | font-size: 1.1em; 34 | font-weight: 300; 35 | padding-left: 30px; 36 | } 37 | 38 | .navigation a:hover { 39 | color: purple; 40 | } 41 | 42 | .fb, 43 | .tw, 44 | .ig, 45 | .gh { 46 | font-size: 1.7em; 47 | padding-right: 30px; 48 | color: #fff; 49 | } 50 | 51 | .fb:hover { 52 | color: #0041f5; 53 | } 54 | 55 | .tw:hover { 56 | color: #2495b1; 57 | } 58 | 59 | .ig:hover { 60 | color: #db2d7b; 61 | } 62 | 63 | .gh:hover { 64 | color: #b37708; 65 | } 66 | 67 | section { 68 | padding: 100px 200px; 69 | } 70 | 71 | .main { 72 | width: 100%; 73 | min-height: 100vh; 74 | display: flex; 75 | align-items: center; 76 | background-image:url("../images/bg.gif"); 77 | background-repeat: no-repeat; 78 | background-size: cover; 79 | background-attachment: fixed; 80 | } 81 | 82 | .main h2 { 83 | color: #fff; 84 | font-weight: 500; 85 | font-size: 1.4em; 86 | } 87 | 88 | .main h2 span { 89 | color: #4e9eff; 90 | font-size: 2em; 91 | font-weight: 600; 92 | display: inline-block; 93 | margin-top: 10px; 94 | position: relative; 95 | } 96 | 97 | .main h3 { 98 | color: #fff; 99 | font-size: 2em; 100 | font-weight: 700; 101 | letter-spacing: 1px; 102 | margin-top: 10px; 103 | margin-bottom: 30px; 104 | } 105 | 106 | .main-btn { 107 | text-decoration: none; 108 | color: #fff; 109 | background-color: #3a6cf4; 110 | font-size: 1.2em; 111 | font-weight: 600; 112 | display: inline-block; 113 | padding: 0.9375em 2.1875em; 114 | letter-spacing: 1px; 115 | border-radius: 15px; 116 | margin-bottom: 40px; 117 | transition: 0.7s ease; 118 | } 119 | 120 | .main-btn:hover { 121 | background-color: #0a49f6; 122 | transform: scale(1.1); 123 | } 124 | 125 | .title { 126 | display: flex; 127 | justify-content: center; 128 | color: #3a6cf4; 129 | font-size: 2.2em; 130 | font-weight: 800; 131 | margin-bottom: 30px; 132 | } 133 | 134 | .content { 135 | display: flex; 136 | justify-content: center; 137 | flex-direction: row; 138 | flex-wrap: nowrap; 139 | } 140 | 141 | .card { 142 | background-color: #fff; 143 | width: 21.25em; 144 | box-shadow: 0 5px 25px rgba(1 1 1 /50%); 145 | border-radius: 10px; 146 | padding: 25px; 147 | margin: 15px; 148 | transition: 0.7s ease; 149 | } 150 | 151 | .card:hover { 152 | transform: scale(1.1); 153 | } 154 | 155 | .icon { 156 | color: #3a6cf4e8; 157 | font-size: 8em; 158 | text-align: center; 159 | } 160 | 161 | .info h3 { 162 | color: #3a6cf4; 163 | font-size: 1.2em; 164 | font-weight: 700; 165 | margin: 10px; 166 | } 167 | 168 | .info { 169 | text-align: center; 170 | } 171 | 172 | .info a { 173 | text-decoration: none; 174 | color: #3a6cf4; 175 | } 176 | 177 | .info a:hover { 178 | color: #0a49f6; 179 | } 180 | 181 | .projects { 182 | background-color: #000016; 183 | } 184 | 185 | .project .content { 186 | margin-top: 30px; 187 | } 188 | 189 | .project-card { 190 | background-color: #fff; 191 | border: 1px solid #fff; 192 | min-height: 14em; 193 | width: 23em; 194 | overflow: hidden; 195 | border-radius: 10px; 196 | margin: 20px; 197 | transition: 0.7s ease; 198 | } 199 | 200 | .project-image img { 201 | width: 100%; 202 | } 203 | 204 | .project-card:hover { 205 | transform: scale(1.1); 206 | } 207 | 208 | .project-card:hover .project-image { 209 | opacity: 0.8; 210 | } 211 | 212 | .project-info { 213 | padding: 1em; 214 | } 215 | 216 | .project-catogrey { 217 | font-size: 0.8em; 218 | color: rgb(1 1 1 /50%); 219 | } 220 | 221 | .project-title { 222 | display: flex; 223 | justify-content: space-between; 224 | text-transform: uppercase; 225 | margin-top: 10px; 226 | } 227 | 228 | .more-details { 229 | text-decoration: none; 230 | color: #3a6cf4; 231 | } 232 | 233 | .more-details:hover { 234 | color: purple; 235 | } 236 | 237 | .up { 238 | text-align: center; 239 | font-size: 2.30em; 240 | } 241 | 242 | .up .btn-up { 243 | text-decoration: none; 244 | color: #3a6cf4; 245 | font-weight: 600; 246 | display: flex; 247 | transition: 0.7s ease; 248 | position: fixed; 249 | right: 10px; 250 | bottom: 5px; 251 | cursor: pointer; 252 | } 253 | 254 | .btn-up:hover { 255 | color: #0a49f6; 256 | transform: scale(1.1); 257 | } 258 | 259 | .footer { 260 | background-color: #000016; 261 | color: #fff; 262 | padding: 2em; 263 | display: flex; 264 | justify-content: space-between; 265 | } 266 | 267 | .footer-title { 268 | font-size: 1.3em; 269 | font-weight: 600; 270 | } 271 | 272 | .footer-title span { 273 | color: #3a6cf4; 274 | } 275 | 276 | .footer-title span:hover { 277 | color: #0a49f6; 278 | } 279 | 280 | .footer .social-icons a { 281 | font-size: 1.3em; 282 | padding: 0 12px 0 0; 283 | } 284 | 285 | @media(max-width:1023px) { 286 | header { 287 | padding: 12px 20px; 288 | } 289 | 290 | .navigation a { 291 | padding-left: 10px; 292 | } 293 | 294 | .title { 295 | font-size: 1.8em; 296 | } 297 | 298 | section { 299 | padding: 80px 20px; 300 | } 301 | 302 | .main h2 { 303 | font-size: 1em; 304 | } 305 | 306 | .main h3 { 307 | font-size: 1.6em; 308 | } 309 | 310 | .content { 311 | flex-direction: column; 312 | align-items: center; 313 | } 314 | } 315 | 316 | @media(max-width:641px) { 317 | body { 318 | font-size: 12px; 319 | } 320 | 321 | .main h2 { 322 | font-size: 0.8em; 323 | } 324 | 325 | .main h3 { 326 | font-size: 1.4em; 327 | } 328 | } 329 | 330 | @media(max-width:300px) { 331 | body { 332 | font-size: 12px; 333 | } 334 | } -------------------------------------------------------------------------------- /ico/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/ico/android-chrome-192x192.png -------------------------------------------------------------------------------- /ico/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/ico/android-chrome-512x512.png -------------------------------------------------------------------------------- /ico/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/ico/apple-touch-icon.png -------------------------------------------------------------------------------- /ico/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/ico/favicon-16x16.png -------------------------------------------------------------------------------- /ico/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/ico/favicon-32x32.png -------------------------------------------------------------------------------- /ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/ico/favicon.ico -------------------------------------------------------------------------------- /images/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/images/1.PNG -------------------------------------------------------------------------------- /images/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/images/2.PNG -------------------------------------------------------------------------------- /images/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/images/3.PNG -------------------------------------------------------------------------------- /images/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/images/4.PNG -------------------------------------------------------------------------------- /images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/images/bg.gif -------------------------------------------------------------------------------- /images/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/images/p1.png -------------------------------------------------------------------------------- /images/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2Mo/Portofolio-Website-v2/ac1b2b300eb5fcd4b5e37bc8fe8e4ddf8a11aa6e/images/p2.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Mosh3eb 13 | 14 | 15 |
16 | 17 | 22 |
23 |
24 |
25 | 26 |
27 |
28 |

Hello I'm Mohamed
A Front-End Web Developer

29 |

I Build Content that's Maybe Changes The World

30 | View MyWork 31 | 37 |
38 |
39 |
40 |

Services

41 |
42 |
43 |
44 | 45 |
46 |
47 |

Script writing

48 |

I Write & Explain Scripts For Any Topic Either As a File Or Video Tutorial

49 |
50 |
51 |
52 |
53 | 54 |
55 |
56 |

Full web Development

57 |

I Takes Your Website From Skratch Directly To The Domain

58 |
59 |
60 |
61 |
62 | 63 |
64 |
65 |

Graphic Design

66 |

I Design Any Kind Of Graphics For Your Website Or Editing Any Content That's Need To

67 |
68 |
69 |
70 |
71 |
72 |

Projects

73 |
74 |
75 |
76 | Mountain-image 77 |
78 |
79 |

Script Writing & Portfolio

80 | 81 | Portfolio #2 82 | More Details 83 | 84 |
85 |
86 |
87 |
88 | Mountain-image 89 |
90 |
91 |

Script Writing

92 | 93 | Password Generator 94 | More Details 95 | 96 |
97 |
98 |
99 |
100 |
101 |

Get In Touch With Me

102 |
103 |
104 |
105 | 106 |
107 |
108 |

Phone

109 |

+201030191239

110 |
111 |
112 |
113 |
114 | 115 |
116 |
117 |

Email

118 |

Mosh3eb@vk.com

119 |
120 |
121 |
122 |
123 | 132 | 133 | 134 | --------------------------------------------------------------------------------