Graphic Design
90 |91 | Graphic design is the process of visual communication and 92 | problem-solving using one or more of typography, photography 93 | and illustration. 94 |
95 |├── README.md ├── imgs ├── logo.png ├── blog-1.jpg ├── blog-2.jpg ├── blog-3.jpg ├── laptop.png ├── team-1.png ├── team-2.png ├── team-3.png ├── team-4.png ├── tech-1.png ├── tech-2.png ├── tech-3.png ├── tech-4.png ├── title.png ├── work-01.jpg ├── work-02.jpg ├── work-03.jpg ├── work-04.jpg ├── work-05.jpg ├── work-06.jpg ├── work-07.jpg └── work-08.jpg ├── images ├── logo.png ├── photo1.jpg ├── photo10.png ├── photo2.jpg ├── photo3.jpg ├── photo4.jpg ├── photo5.jpg ├── photo6.jpg ├── photo7.jpg ├── photo8.jpg ├── photo9.jpg ├── mountain.jpg └── mountain2.jpg ├── style2.css ├── js └── custom.js ├── bondi.css ├── newimage ├── showcase.svg ├── react.svg └── fundamentals.svg ├── css ├── normalize.css ├── leon.css └── main.css ├── template1.html ├── index.html ├── project.html └── project2.html /README.md: -------------------------------------------------------------------------------- 1 | # Responsive-Design 2 | make responsive web design 3 | -------------------------------------------------------------------------------- /imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/logo.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/logo.png -------------------------------------------------------------------------------- /imgs/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/blog-1.jpg -------------------------------------------------------------------------------- /imgs/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/blog-2.jpg -------------------------------------------------------------------------------- /imgs/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/blog-3.jpg -------------------------------------------------------------------------------- /imgs/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/laptop.png -------------------------------------------------------------------------------- /imgs/team-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/team-1.png -------------------------------------------------------------------------------- /imgs/team-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/team-2.png -------------------------------------------------------------------------------- /imgs/team-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/team-3.png -------------------------------------------------------------------------------- /imgs/team-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/team-4.png -------------------------------------------------------------------------------- /imgs/tech-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/tech-1.png -------------------------------------------------------------------------------- /imgs/tech-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/tech-2.png -------------------------------------------------------------------------------- /imgs/tech-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/tech-3.png -------------------------------------------------------------------------------- /imgs/tech-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/tech-4.png -------------------------------------------------------------------------------- /imgs/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/title.png -------------------------------------------------------------------------------- /images/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/photo1.jpg -------------------------------------------------------------------------------- /images/photo10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/photo10.png -------------------------------------------------------------------------------- /images/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/photo2.jpg -------------------------------------------------------------------------------- /images/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/photo3.jpg -------------------------------------------------------------------------------- /images/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/photo4.jpg -------------------------------------------------------------------------------- /images/photo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/photo5.jpg -------------------------------------------------------------------------------- /images/photo6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/photo6.jpg -------------------------------------------------------------------------------- /images/photo7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/photo7.jpg -------------------------------------------------------------------------------- /images/photo8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/photo8.jpg -------------------------------------------------------------------------------- /images/photo9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/photo9.jpg -------------------------------------------------------------------------------- /imgs/work-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/work-01.jpg -------------------------------------------------------------------------------- /imgs/work-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/work-02.jpg -------------------------------------------------------------------------------- /imgs/work-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/work-03.jpg -------------------------------------------------------------------------------- /imgs/work-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/work-04.jpg -------------------------------------------------------------------------------- /imgs/work-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/work-05.jpg -------------------------------------------------------------------------------- /imgs/work-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/work-06.jpg -------------------------------------------------------------------------------- /imgs/work-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/work-07.jpg -------------------------------------------------------------------------------- /imgs/work-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/imgs/work-08.jpg -------------------------------------------------------------------------------- /images/mountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/mountain.jpg -------------------------------------------------------------------------------- /images/mountain2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moemen12/Responsive-Design/HEAD/images/mountain2.jpg -------------------------------------------------------------------------------- /style2.css: -------------------------------------------------------------------------------- 1 | body::before{ 2 | display:block; 3 | content: ''; 4 | height: 60px; 5 | } 6 | 7 | @media(min-width:768px) { 8 | .news-input{ 9 | width: 50%; 10 | } 11 | } -------------------------------------------------------------------------------- /js/custom.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $(".info-list li").click(function () { 3 | $(this).addClass("selected").siblings("li").removeClass("selected"); 4 | $(".info-content div").hide(); 5 | $("." + $(this).data("class")).fadeIn(); 6 | }); 7 | }); 8 | -------------------------------------------------------------------------------- /bondi.css: -------------------------------------------------------------------------------- 1 | :root{ 2 | --dark-color:#19283f; 3 | --green-color:#33D1CC; 4 | --red-color:#ff3150; 5 | --yellow-color:#ffc400; 6 | --section-color:#eff7fa; 7 | } 8 | 9 | .main-btn{ 10 | background-color: var(--red-color); 11 | color:var(--yellow-color) ; 12 | padding: 0.5rem 1rem; 13 | } 14 | .main-btn:hover{ 15 | color: var(--yellow-color); 16 | } 17 | .main-title::after{ 18 | content: ''; 19 | width: 120px; 20 | height: 2px; 21 | background-color: var(--green-color); 22 | position: absolute; 23 | bottom: -20px; 24 | left: 50%; 25 | transform: translateX(-50%); 26 | } 27 | /* start navbar */ 28 | 29 | .navbar{ 30 | background-color: var(--dark-color); 31 | } 32 | .navbar .navbar-nav .nav-link{ 33 | color: white; 34 | } 35 | .navbar .navbar-nav .nav-link.active, 36 | .navbar .navbar-nav .nav-link:focus, 37 | .navbar .navbar-nav .nav-link:hover 38 | { 39 | color:var(--green-color) ; 40 | } 41 | .navbar .navbar-toggler{ 42 | font-size:25px; 43 | border-color: white; 44 | color: white; 45 | } 46 | .navbar .navbar-toggler:focus{ 47 | box-shadow:none; 48 | } 49 | .navbar .navbar-toggler[aria-expanded='true']{ 50 | border-color: var(--green-color); 51 | } 52 | .search{ 53 | border-left: 1px solid var(--green-color); 54 | } 55 | .search i{ 56 | color: var(--green-color); 57 | } 58 | /* end navbar */ 59 | 60 | /* start landing */ 61 | 62 | .landing{ 63 | background-color:var(--dark-color); 64 | min-height:calc(100vh - 72px); 65 | } 66 | /* end landing */ 67 | 68 | /* start features */ 69 | 70 | .features .icon-holder{ 71 | height: 200px; 72 | } 73 | .features .icon-holder i{ 74 | left: 50%; 75 | transform: translateX(-50%); 76 | } 77 | .features .icon-holder .number{ 78 | font-size: 12rem; 79 | color:var(--section-color); 80 | } 81 | .features .icon-holder .icon{ 82 | color: var(--green-color); 83 | } 84 | .features .feat h4{ 85 | color: var(--yellow-color); 86 | } 87 | /* end features */ 88 | 89 | 90 | /* start our-work */ 91 | 92 | .our-work{ 93 | background-color: var(--section-color); 94 | } 95 | .our-work ul .active{ 96 | background-color: var(--red-color); 97 | color: var(--yellow-color); 98 | } 99 | .our-work ul li{ 100 | padding: 0.5em 1rem; 101 | cursor: pointer; 102 | } 103 | .our-work ul li:not(.active):hover{ 104 | color: var(--red-color); 105 | } 106 | 107 | .our-work .box{ 108 | padding: 5px; 109 | overflow: hidden; 110 | position: relative; 111 | } 112 | .our-work .box::before{ 113 | content: attr(data-work); 114 | position: absolute; 115 | background-color: rgb(51 209 204 / 76%); 116 | width:calc(100% - 10px); 117 | height:calc(100% - 10px); 118 | display: flex; 119 | justify-content: center; 120 | align-items: center; 121 | font-weight: bold; 122 | color: white; 123 | transition: .3s ; 124 | font-size: 1.5rem; 125 | transform: translateX(calc(-100% - 5px)); 126 | } 127 | .our-work .box:hover::before{ 128 | transform: translateX(0); 129 | } 130 | 131 | /* end our-work */ 132 | 133 | 134 | /* start stuff */ 135 | .stuff .description{ 136 | max-width: 500px; 137 | } 138 | /* End stuff */ 139 | 140 | /* start Team */ 141 | .team{ 142 | background-color: var(--section-color); 143 | } 144 | .team h2{ 145 | color: var(--yellow-color); 146 | } 147 | .team .box h4{ 148 | background-color:var(--green-color) ; 149 | } 150 | /* End Team */ 151 | 152 | 153 | /* start project */ 154 | .project{ 155 | background-color: var(--dark-color); 156 | } 157 | 158 | /* End project */ 159 | 160 | /* start subscribe */ 161 | .subscribe{ 162 | background-color: var(--yellow-color); 163 | } 164 | .subscribe input[type='text']{ 165 | border: none; 166 | border-bottom:1px solid white; 167 | } 168 | .subscribe input[type='text']:focus{ 169 | outline: none; 170 | } 171 | .subscribe ::placeholder{ 172 | color: white; 173 | } 174 | .subscribe input[type='submit']{ 175 | background-color: var(--dark-color); 176 | color:var(--yellow-color); 177 | } 178 | /* End subscribe */ 179 | /* Start Footer */ 180 | .footer { 181 | background-color: var(--dark-color); 182 | } 183 | .footer .copyright > span { 184 | color: var(--green-color); 185 | } 186 | .footer .copyright div span { 187 | color: var(--yellow-color); 188 | } 189 | .footer .contact ul i { 190 | width: 20px; 191 | height: 20px; 192 | display: flex; 193 | justify-content: center; 194 | } 195 | .footer .facebook { 196 | background-color: #1877f2; 197 | } 198 | .footer .twitter { 199 | background-color: #1da1f2; 200 | } 201 | .footer .linkedin { 202 | background-color: #0077b5; 203 | } 204 | .footer .youtube { 205 | background-color: #ff0000; 206 | } 207 | /* End Footer */ -------------------------------------------------------------------------------- /newimage/showcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/normalize.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ 2 | 3 | /* Document 4 | ========================================================================== */ 5 | 6 | /** 7 | * 1. Correct the line height in all browsers. 8 | * 2. Prevent adjustments of font size after orientation changes in iOS. 9 | */ 10 | 11 | html { 12 | line-height: 1.15; /* 1 */ 13 | -webkit-text-size-adjust: 100%; /* 2 */ 14 | } 15 | 16 | /* Sections 17 | ========================================================================== */ 18 | 19 | /** 20 | * Remove the margin in all browsers. 21 | */ 22 | 23 | body { 24 | margin: 0; 25 | } 26 | 27 | /** 28 | * Render the `main` element consistently in IE. 29 | */ 30 | 31 | main { 32 | display: block; 33 | } 34 | 35 | /** 36 | * Correct the font size and margin on `h1` elements within `section` and 37 | * `article` contexts in Chrome, Firefox, and Safari. 38 | */ 39 | 40 | h1 { 41 | font-size: 2em; 42 | margin: 0.67em 0; 43 | } 44 | 45 | /* Grouping content 46 | ========================================================================== */ 47 | 48 | /** 49 | * 1. Add the correct box sizing in Firefox. 50 | * 2. Show the overflow in Edge and IE. 51 | */ 52 | 53 | hr { 54 | box-sizing: content-box; /* 1 */ 55 | height: 0; /* 1 */ 56 | overflow: visible; /* 2 */ 57 | } 58 | 59 | /** 60 | * 1. Correct the inheritance and scaling of font size in all browsers. 61 | * 2. Correct the odd `em` font sizing in all browsers. 62 | */ 63 | 64 | pre { 65 | font-family: monospace, monospace; /* 1 */ 66 | font-size: 1em; /* 2 */ 67 | } 68 | 69 | /* Text-level semantics 70 | ========================================================================== */ 71 | 72 | /** 73 | * Remove the gray background on active links in IE 10. 74 | */ 75 | 76 | a { 77 | background-color: transparent; 78 | } 79 | 80 | /** 81 | * 1. Remove the bottom border in Chrome 57- 82 | * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. 83 | */ 84 | 85 | abbr[title] { 86 | border-bottom: none; /* 1 */ 87 | text-decoration: underline; /* 2 */ 88 | text-decoration: underline dotted; /* 2 */ 89 | } 90 | 91 | /** 92 | * Add the correct font weight in Chrome, Edge, and Safari. 93 | */ 94 | 95 | b, 96 | strong { 97 | font-weight: bolder; 98 | } 99 | 100 | /** 101 | * 1. Correct the inheritance and scaling of font size in all browsers. 102 | * 2. Correct the odd `em` font sizing in all browsers. 103 | */ 104 | 105 | code, 106 | kbd, 107 | samp { 108 | font-family: monospace, monospace; /* 1 */ 109 | font-size: 1em; /* 2 */ 110 | } 111 | 112 | /** 113 | * Add the correct font size in all browsers. 114 | */ 115 | 116 | small { 117 | font-size: 80%; 118 | } 119 | 120 | /** 121 | * Prevent `sub` and `sup` elements from affecting the line height in 122 | * all browsers. 123 | */ 124 | 125 | sub, 126 | sup { 127 | font-size: 75%; 128 | line-height: 0; 129 | position: relative; 130 | vertical-align: baseline; 131 | } 132 | 133 | sub { 134 | bottom: -0.25em; 135 | } 136 | 137 | sup { 138 | top: -0.5em; 139 | } 140 | 141 | /* Embedded content 142 | ========================================================================== */ 143 | 144 | /** 145 | * Remove the border on images inside links in IE 10. 146 | */ 147 | 148 | img { 149 | border-style: none; 150 | } 151 | 152 | /* Forms 153 | ========================================================================== */ 154 | 155 | /** 156 | * 1. Change the font styles in all browsers. 157 | * 2. Remove the margin in Firefox and Safari. 158 | */ 159 | 160 | button, 161 | input, 162 | optgroup, 163 | select, 164 | textarea { 165 | font-family: inherit; /* 1 */ 166 | font-size: 100%; /* 1 */ 167 | line-height: 1.15; /* 1 */ 168 | margin: 0; /* 2 */ 169 | } 170 | 171 | /** 172 | * Show the overflow in IE. 173 | * 1. Show the overflow in Edge. 174 | */ 175 | 176 | button, 177 | input { /* 1 */ 178 | overflow: visible; 179 | } 180 | 181 | /** 182 | * Remove the inheritance of text transform in Edge, Firefox, and IE. 183 | * 1. Remove the inheritance of text transform in Firefox. 184 | */ 185 | 186 | button, 187 | select { /* 1 */ 188 | text-transform: none; 189 | } 190 | 191 | /** 192 | * Correct the inability to style clickable types in iOS and Safari. 193 | */ 194 | 195 | button, 196 | [type="button"], 197 | [type="reset"], 198 | [type="submit"] { 199 | -webkit-appearance: button; 200 | } 201 | 202 | /** 203 | * Remove the inner border and padding in Firefox. 204 | */ 205 | 206 | button::-moz-focus-inner, 207 | [type="button"]::-moz-focus-inner, 208 | [type="reset"]::-moz-focus-inner, 209 | [type="submit"]::-moz-focus-inner { 210 | border-style: none; 211 | padding: 0; 212 | } 213 | 214 | /** 215 | * Restore the focus styles unset by the previous rule. 216 | */ 217 | 218 | button:-moz-focusring, 219 | [type="button"]:-moz-focusring, 220 | [type="reset"]:-moz-focusring, 221 | [type="submit"]:-moz-focusring { 222 | outline: 1px dotted ButtonText; 223 | } 224 | 225 | /** 226 | * Correct the padding in Firefox. 227 | */ 228 | 229 | fieldset { 230 | padding: 0.35em 0.75em 0.625em; 231 | } 232 | 233 | /** 234 | * 1. Correct the text wrapping in Edge and IE. 235 | * 2. Correct the color inheritance from `fieldset` elements in IE. 236 | * 3. Remove the padding so developers are not caught out when they zero out 237 | * `fieldset` elements in all browsers. 238 | */ 239 | 240 | legend { 241 | box-sizing: border-box; /* 1 */ 242 | color: inherit; /* 2 */ 243 | display: table; /* 1 */ 244 | max-width: 100%; /* 1 */ 245 | padding: 0; /* 3 */ 246 | white-space: normal; /* 1 */ 247 | } 248 | 249 | /** 250 | * Add the correct vertical alignment in Chrome, Firefox, and Opera. 251 | */ 252 | 253 | progress { 254 | vertical-align: baseline; 255 | } 256 | 257 | /** 258 | * Remove the default vertical scrollbar in IE 10+. 259 | */ 260 | 261 | textarea { 262 | overflow: auto; 263 | } 264 | 265 | /** 266 | * 1. Add the correct box sizing in IE 10. 267 | * 2. Remove the padding in IE 10. 268 | */ 269 | 270 | [type="checkbox"], 271 | [type="radio"] { 272 | box-sizing: border-box; /* 1 */ 273 | padding: 0; /* 2 */ 274 | } 275 | 276 | /** 277 | * Correct the cursor style of increment and decrement buttons in Chrome. 278 | */ 279 | 280 | [type="number"]::-webkit-inner-spin-button, 281 | [type="number"]::-webkit-outer-spin-button { 282 | height: auto; 283 | } 284 | 285 | /** 286 | * 1. Correct the odd appearance in Chrome and Safari. 287 | * 2. Correct the outline style in Safari. 288 | */ 289 | 290 | [type="search"] { 291 | -webkit-appearance: textfield; /* 1 */ 292 | outline-offset: -2px; /* 2 */ 293 | } 294 | 295 | /** 296 | * Remove the inner padding in Chrome and Safari on macOS. 297 | */ 298 | 299 | [type="search"]::-webkit-search-decoration { 300 | -webkit-appearance: none; 301 | } 302 | 303 | /** 304 | * 1. Correct the inability to style clickable types in iOS and Safari. 305 | * 2. Change font properties to `inherit` in Safari. 306 | */ 307 | 308 | ::-webkit-file-upload-button { 309 | -webkit-appearance: button; /* 1 */ 310 | font: inherit; /* 2 */ 311 | } 312 | 313 | /* Interactive 314 | ========================================================================== */ 315 | 316 | /* 317 | * Add the correct display in Edge, IE 10+, and Firefox. 318 | */ 319 | 320 | details { 321 | display: block; 322 | } 323 | 324 | /* 325 | * Add the correct display in all browsers. 326 | */ 327 | 328 | summary { 329 | display: list-item; 330 | } 331 | 332 | /* Misc 333 | ========================================================================== */ 334 | 335 | /** 336 | * Add the correct display in IE 10+. 337 | */ 338 | 339 | template { 340 | display: none; 341 | } 342 | 343 | /** 344 | * Add the correct display in IE 10. 345 | */ 346 | 347 | [hidden] { 348 | display: none; 349 | } -------------------------------------------------------------------------------- /template1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 14 | 18 | 19 | 20 | 21 |We are Leon - Super Creative & Minimal Agency Web Template
45 |55 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do 56 | eiusmod tempor incididunt ut lab 57 |
58 |63 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do 64 | eiusmod tempor incididunt ut lab 65 |
66 |71 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do 72 | eiusmod tempor incididunt ut lab 73 |
74 |Don't be busy, be productive
83 |91 | Graphic design is the process of visual communication and 92 | problem-solving using one or more of typography, photography 93 | and illustration. 94 |
95 |102 | Process of enhancing user satisfaction with a product by 103 | improving the usability, accessibility, and pleasure provided 104 | in the interaction. 105 |
106 |117 | Web design encompasses many different skills and disciplines 118 | in the production and maintenance of websites. 119 |
120 |127 | Web development is a broad term for the work involved in 128 | developing a web site for the Internet or an intranet. 129 |
130 |
137 | If you do it right, it will last forever.
148 |
151 | 154 | My creative ability is very difficult to measure because it can 155 | manifest in so many surprising and. 156 |
157 |
161 | 164 | My creative ability is very difficult to measure because it can 165 | manifest in so many surprising and. 166 |
167 |
171 | 174 | My creative ability is very difficult to measure because it can 175 | manifest in so many surprising and. 176 |
177 |Less is more work
188 |
191 | 194 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nihil 195 | nemo neque voluptate tempora velit cum non, fuga vitae architecto 196 | delectus sed maxime rerum impedit aliquam obcaecati, aut excepturi 197 | iusto laudantium! 198 |
199 |201 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Minus, 202 | sapiente. Velit iure exercitationem dolores nesciunt dolore. Eum 203 | officiis dolorum hic voluptate quaerat minima, similique inventore 204 | esse, alias, sed quo officia? 205 |
206 |We are born to create
216 |Feel free to drop us a line at:
218 | leonagency@mail.com 221 | 227 |This is Fast Feature This is Fast Feature This is Fast Feature This is Fast Feature This is Fast Feature
36 |This is Secure Feature This is Secure Feature This is Secure Feature This is Secure Feature This is Secure Feature
40 |This is Cheap Feature This is Cheap Feature This is Cheap Feature This is Cheap Feature This is Cheap Feature
44 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Nam soluta eveniet neque vel. Hic natus culpa iure, aut laboriosam ea possimus totam, aliquam cumque dolorum, repellendus minus provident voluptatum vel? 60 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Iusto dignissimos fuga vero, sapiente illo aperiam. Quasi, sunt est debitis sit consectetur fugiat asperiores! Dicta, quasi possimus quidem in nam autem. 61 |
62 |
71 |
74 |
77 |
80 |
83 |
86 |
89 |
92 |
154 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt id iure ab facilis quia nulla laudantium cupiditate dolore tenetur nisi possimus facere numquam.
157 |
163 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt id iure ab facilis quia nulla laudantium cupiditate dolore tenetur nisi possimus facere numquam.
166 |
172 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt id iure ab facilis quia nulla laudantium cupiditate dolore tenetur nisi possimus facere numquam.
175 |
56 | Some Of These Stuff Under
58 |Pellentesque in ipsum id orci porta dapibus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.
68 |Pellentesque in ipsum id orci porta dapibus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.
78 |Pellentesque in ipsum id orci porta dapibus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.
89 |
100 | Prepare To Be Amazed
102 |
114 |
119 |
124 |
129 |
134 |
139 |
144 |
149 |
162 | THE GREAT TEAM
164 |Donec rutrum congue leo eget malesuada. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Pellentesque in ipsum id orci porta dapibus. Proin eget tortor risus. Donec sollicitudin molestie malesuada.
166 |Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a.
171 |Donec rutrum congue leo eget malesuada. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Pellentesque in ipsum id orci porta dapibus. Proin eget tortor risus. Donec sollicitudin molestie malesuada.
172 | Order Me One 173 |
178 | Donec rutrum congue leo eget malesuada. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Pellentesque in ipsum id orci porta dapibus. Proin eget tortor risus. Donec sollicitudin molestie malesuada.
187 |
191 | “I don't understand how we got by those troops. I thought we were dead.“193 |
198 | “I don't understand how we got by those troops. I thought we were dead.“200 |
205 | “I don't understand how we got by those troops. I thought we were dead.“207 |
212 | “I don't understand how we got by those troops. I thought we were dead.“214 |
224 |
227 |
230 |
233 |
236 |
239 | Leave your description and we start the engine.Don't worry,you can cancel anytime
247 |
256 | NEW STORIES
258 |
262 |
269 |
276 |
37 | We focus on teaching our students the fundamentals
of the latest
38 | and greatest technologies to prepare them for
their first
39 | dev role
40 |
79 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. 80 | Iure, quas quidem possimus dolorum esse eligendi? 81 |
82 | Read More 83 |94 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. 95 | Iure, quas quidem possimus dolorum esse eligendi? 96 |
97 | Read More 98 |109 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. 110 | Iure, quas quidem possimus dolorum esse eligendi? 111 |
112 | Read More 113 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Officia reprehenderit ab delectus aliquam est iusto.
132 |Lorem ipsum dolor, sit amet consectetur adipisicing elit. Maxime, libero quasi? Natus facere aspernatur corrupti. Corrupti, accusamus a inventore quasi vero qui totam, delectus doloremque odio perferendis esse culpa explicabo!
133 | Read More 134 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Officia reprehenderit ab delectus aliquam est iusto.
146 |Lorem ipsum dolor, sit amet consectetur adipisicing elit. Maxime, libero quasi? Natus facere aspernatur corrupti. Corrupti, accusamus a inventore quasi vero qui totam, delectus doloremque odio perferendis esse culpa explicabo!
147 | Read More 148 |317 | Our instructors all have 5+ years working as a web developer in the 318 | industry 319 |
320 |