PODIUM
67 |Google still abuses its search monopoly in the EU — regulators wake up!
68 |by Christian Kroll 2 hours ago
├── .github └── workflows │ └── linters.yml ├── .gitignore ├── LICENSE ├── README.md ├── images ├── article1_img.png ├── article2_img.jpg ├── article3_img.jpg ├── article4_img.png ├── article5_img.jpg ├── article6_img.jpg ├── article7_img.png ├── article8_img.jpg ├── cover-gradient.png ├── deals-ribbon.svg ├── desktop.png ├── google-logo.png ├── image-1.jpg ├── image-2.jpg ├── image-3.jpg ├── image-4.jpg ├── image-gradient.png ├── latest-pc1.jpg ├── latest-pc2.png ├── latest-pc3.png ├── latest-pc4.png ├── latest-pc5.png ├── latest-pc6.png ├── latest-pc7.png ├── latest-pc8.jpg ├── latest-pc9.png ├── latest_deal1.jpg ├── latest_deal2.jpg ├── latest_deal3.jpg ├── latest_deal4.jpg ├── latest_deal5.jpg ├── latest_deal6.jpg ├── latest_deal7.jpg ├── latest_deal8.jpg ├── logo-facebook.png ├── logo-instagram.png ├── logo-mail.png ├── logo-twiter.jpg ├── logo-youtube.jpg ├── logo_footer.png ├── logo_footer2.png ├── logo_mobile-nav.png ├── logo_rss.png ├── mobile-nav-logo.png ├── mobile-version.png ├── most-popular_img1.jpg ├── most-popular_img2.png ├── most-popular_img3.png ├── most-popular_img4.jpg ├── most-popular_img5.jpg ├── most-popular_img6.png ├── most-popular_img7.jpg ├── most-popular_img8.jpg ├── most-popular_img9.jpg ├── pinterest-logo.jpg ├── search-outline.svg ├── side-img2.png ├── side-img_1.jpg ├── tablet-version.png └── tnw.svg ├── index.html └── styles.css /.github/workflows/linters.yml: -------------------------------------------------------------------------------- 1 | name: Linters 2 | 3 | on: pull_request 4 | 5 | env: 6 | FORCE_COLOR: 1 7 | 8 | jobs: 9 | lighthouse: 10 | name: Lighthouse 11 | runs-on: ubuntu-18.04 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: actions/setup-node@v1 15 | with: 16 | node-version: "12.x" 17 | - name: Setup Lighthouse 18 | run: npm install -g @lhci/cli@0.4.x 19 | - name: Lighthouse Report 20 | run: lhci autorun --upload.target=temporary-public-storage --collect.staticDistDir=. 21 | webhint: 22 | name: Webhint 23 | runs-on: ubuntu-18.04 24 | steps: 25 | - uses: actions/checkout@v2 26 | - uses: actions/setup-node@v1 27 | with: 28 | node-version: "12.x" 29 | - name: Setup Webhint 30 | run: | 31 | npm install --save-dev hint@6.0.x 32 | [ -f .hintrc ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.hintrc 33 | - name: Webhint Report 34 | run: npx hint --telemetry=off . 35 | stylelint: 36 | name: Stylelint 37 | runs-on: ubuntu-18.04 38 | steps: 39 | - uses: actions/checkout@v2 40 | - uses: actions/setup-node@v1 41 | with: 42 | node-version: "12.x" 43 | - name: Setup Stylelint 44 | run: | 45 | npm install --save-dev stylelint@13.3.x stylelint-scss@3.17.x stylelint-config-standard@20.0.x stylelint-csstree-validator 46 | [ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.stylelintrc.json 47 | - name: Stylelint Report 48 | run: npx stylelint "**/*.{css,scss}" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | next-web.code-workspace -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Galiwango Ananiya / Mohd Nayeem Shah 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Responsive Design 2 | ## Responsive Home Page of the Next Web home page 3 | 4 | This repository contains a project which consists of a responsive clone of The Next Web home page. 5 | 6 | ## Below are the screenshots of the completed project 7 | 8 | ### Desktop Version 9 | 10 |  11 | 12 | 13 | ### Tablet Version 14 | 15 |  16 | 17 | 18 | 19 | ### Mobile Version 20 | 21 |  22 | 23 | 24 | 25 | ## Built With 26 | 27 | - HTML 28 | - CSS 29 | - ionic icons 30 | - Google fonts 31 | 32 | 33 | ## Below is the Live link to th next web home page 34 | 35 | [The Next Web home page Link](https://gango-anan.github.io/the-next-web-clone/.) 36 | 37 | ## Getting Started 38 | 39 | ### To run this project: 40 | - Install a web browser of your choice prefferably Google chrome or mozilla firefox. 41 | - Launch your webserver and 42 | - Copy the project files to the webserver folder 43 | - Open your browser and launch the index.html file 44 | - Thank you. 45 | 46 | ## Authors 47 | 👨🏻💻 **Galiwango Ananiya** 48 | - GitHub: [@gango-anan](https://github.com/gango-anan) 49 | - Twitter: [@gango_anan](https://twitter.com/gango_anan) 50 | - LinkedIn: [@galiwango-ananiya](https://www.linkedin.com/public-profile/settings?trk=d_flagship3_profile_self_view_public_profile) 51 | 52 | 53 | 👨🏻💻 **Mohd Nayeem Shah** 54 | - GitHub: [@shahnaeem](https://github.com/shahnaeem) 55 | - Twitter: [@mohdnayeemshah1](https://twitter.com/MOHDNAYEEMSHAH1) 56 | - LinkedIn: [@mohd-nayeem-shah-97a590152](https://linkedin.com/in/mohd-nayeem-shah-97a590152) 57 | 58 | ## 🤝 Contributing 59 | 60 | Contributions, issues, and feature requests are welcome! 61 | 62 | Feel free to check the [issues page](https://github.com/gango-anan/the-next-web-clone/issues). 63 | 64 | 65 | ## Show your support 66 | 67 | Give a ⭐️ if you like this project! 68 | 69 | ## Acknowledgments 70 | 71 | - To make this project a success a lot of sources were used especially google, youtube, css trick website, MDN reference and above all the positive reviews from our respective standup teams, we would like to thank all those who authored the articles we used and a big thank you to our stand up teams. 72 | 73 | ## 📝 License 74 | 75 | This project is [MIT](https://github.com/gango-anan/the-next-web-clone/blob/master/LICENSE) licensed. 76 | -------------------------------------------------------------------------------- /images/article1_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/article1_img.png -------------------------------------------------------------------------------- /images/article2_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/article2_img.jpg -------------------------------------------------------------------------------- /images/article3_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/article3_img.jpg -------------------------------------------------------------------------------- /images/article4_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/article4_img.png -------------------------------------------------------------------------------- /images/article5_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/article5_img.jpg -------------------------------------------------------------------------------- /images/article6_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/article6_img.jpg -------------------------------------------------------------------------------- /images/article7_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/article7_img.png -------------------------------------------------------------------------------- /images/article8_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/article8_img.jpg -------------------------------------------------------------------------------- /images/cover-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/cover-gradient.png -------------------------------------------------------------------------------- /images/deals-ribbon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/desktop.png -------------------------------------------------------------------------------- /images/google-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/google-logo.png -------------------------------------------------------------------------------- /images/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/image-1.jpg -------------------------------------------------------------------------------- /images/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/image-2.jpg -------------------------------------------------------------------------------- /images/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/image-3.jpg -------------------------------------------------------------------------------- /images/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/image-4.jpg -------------------------------------------------------------------------------- /images/image-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/image-gradient.png -------------------------------------------------------------------------------- /images/latest-pc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest-pc1.jpg -------------------------------------------------------------------------------- /images/latest-pc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest-pc2.png -------------------------------------------------------------------------------- /images/latest-pc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest-pc3.png -------------------------------------------------------------------------------- /images/latest-pc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest-pc4.png -------------------------------------------------------------------------------- /images/latest-pc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest-pc5.png -------------------------------------------------------------------------------- /images/latest-pc6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest-pc6.png -------------------------------------------------------------------------------- /images/latest-pc7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest-pc7.png -------------------------------------------------------------------------------- /images/latest-pc8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest-pc8.jpg -------------------------------------------------------------------------------- /images/latest-pc9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest-pc9.png -------------------------------------------------------------------------------- /images/latest_deal1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest_deal1.jpg -------------------------------------------------------------------------------- /images/latest_deal2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest_deal2.jpg -------------------------------------------------------------------------------- /images/latest_deal3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest_deal3.jpg -------------------------------------------------------------------------------- /images/latest_deal4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest_deal4.jpg -------------------------------------------------------------------------------- /images/latest_deal5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest_deal5.jpg -------------------------------------------------------------------------------- /images/latest_deal6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest_deal6.jpg -------------------------------------------------------------------------------- /images/latest_deal7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest_deal7.jpg -------------------------------------------------------------------------------- /images/latest_deal8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/latest_deal8.jpg -------------------------------------------------------------------------------- /images/logo-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/logo-facebook.png -------------------------------------------------------------------------------- /images/logo-instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/logo-instagram.png -------------------------------------------------------------------------------- /images/logo-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/logo-mail.png -------------------------------------------------------------------------------- /images/logo-twiter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/logo-twiter.jpg -------------------------------------------------------------------------------- /images/logo-youtube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/logo-youtube.jpg -------------------------------------------------------------------------------- /images/logo_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/logo_footer.png -------------------------------------------------------------------------------- /images/logo_footer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/logo_footer2.png -------------------------------------------------------------------------------- /images/logo_mobile-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/logo_mobile-nav.png -------------------------------------------------------------------------------- /images/logo_rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/logo_rss.png -------------------------------------------------------------------------------- /images/mobile-nav-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/mobile-nav-logo.png -------------------------------------------------------------------------------- /images/mobile-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/mobile-version.png -------------------------------------------------------------------------------- /images/most-popular_img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/most-popular_img1.jpg -------------------------------------------------------------------------------- /images/most-popular_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/most-popular_img2.png -------------------------------------------------------------------------------- /images/most-popular_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/most-popular_img3.png -------------------------------------------------------------------------------- /images/most-popular_img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/most-popular_img4.jpg -------------------------------------------------------------------------------- /images/most-popular_img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/most-popular_img5.jpg -------------------------------------------------------------------------------- /images/most-popular_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/most-popular_img6.png -------------------------------------------------------------------------------- /images/most-popular_img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/most-popular_img7.jpg -------------------------------------------------------------------------------- /images/most-popular_img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/most-popular_img8.jpg -------------------------------------------------------------------------------- /images/most-popular_img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/most-popular_img9.jpg -------------------------------------------------------------------------------- /images/pinterest-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/pinterest-logo.jpg -------------------------------------------------------------------------------- /images/search-outline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/side-img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/side-img2.png -------------------------------------------------------------------------------- /images/side-img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/side-img_1.jpg -------------------------------------------------------------------------------- /images/tablet-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gango-anan/the-next-web-clone/afab33e3d4a5bdab84b71b8f7529b0512134806f/images/tablet-version.png -------------------------------------------------------------------------------- /images/tnw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |PODIUM
67 |by Christian Kroll 2 hours ago
Cities Today - 3 hours ago
94 |TNW Deals - 3 hours ago
103 |Matthew Beedham - 3 hours ago
112 |Thomas Macaulay - 4 hours ago
121 |Ivan Mehta - 5 hours ago
130 |Jair Ribeiro - 6 hours ago
139 |Ben Dickson - 6 hours ago
148 |Matthew Beedham - 7 hours ago
157 |$149M
177 |SERIES E
178 |Chinese biotech firm Genecast secures $149m in Series E round on DealStreetAsia
185 |$35M
194 |SERIES C
195 |202 | Australia's SafetyCulture raises a further $35m on AVCJ 203 |
204 |$15M
213 |SERIES A
214 |221 | Video creation and editing platform InVideo raises $15 million on TechCrunch 222 |
223 |$11M
232 |SERIES B
233 |240 | Indian marketplace Jumbotail raises $11m led by Canada's Heron Rock on DealStreetAsia 241 |
242 |Bitcoin rally sends world's top cryptocurrency ahead of gold and silver
261 |Praise Hephaestus! Microsoft Office iPad apps now have trackpad support
287 |The Apple Watch design is already a classic — will it ever change?
313 |Study: 40% of escooter riders are injured on their first ride
339 |This real-world multiplayer game lets you spend other people’s money — really
365 |Amazon's electric delivery vans made by Rivian are here, and they're pretty cute
443 |Pixar's 'Soul' will land on Disney+ Christmas day, no $30 fee required
469 |Degoo Premium: Lifetime 10TB Backup Plan
500 |$3600 $99.99
The 2020 Adobe Graphic Design Certification School
509 |$1497 $49
The Social Distancing Lifetime Subscription Bundle Ft. Rosetta Stone
518 |$744 $199
The Complete Excel Excellence Bundle
527 |$648 $39.99
The Lean Six Sigma Career Advancement Bundle
536 |$2500 $39.99
FREE: Adobe Photoshop Diploma 4-Week Course
545 |$95 $0
The Ultimate Python & Artificial Intelligence Certification Bundle
554 |$1791 $39.9
Desklab Portable Touchscreen Monitor
563 |$275 $248.95