├── README.md ├── _config.yml ├── .vscode └── settings.json ├── img ├── logo.png ├── play.png ├── home2.png ├── html.jpeg ├── network.png ├── user1.jpg ├── user2.jpg ├── wave1.png ├── wave2.png ├── service1.png ├── service2.png ├── service3.png ├── twitter-icon.png ├── facebook-icon.png ├── instagram-icon.png ├── linkedin-icon.png ├── snapchat-icon.png └── whatsapp-icon.png ├── style.css └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # Digital agency. 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-hacker -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } 4 | -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/play.png -------------------------------------------------------------------------------- /img/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/home2.png -------------------------------------------------------------------------------- /img/html.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/html.jpeg -------------------------------------------------------------------------------- /img/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/network.png -------------------------------------------------------------------------------- /img/user1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/user1.jpg -------------------------------------------------------------------------------- /img/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/user2.jpg -------------------------------------------------------------------------------- /img/wave1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/wave1.png -------------------------------------------------------------------------------- /img/wave2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/wave2.png -------------------------------------------------------------------------------- /img/service1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/service1.png -------------------------------------------------------------------------------- /img/service2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/service2.png -------------------------------------------------------------------------------- /img/service3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/service3.png -------------------------------------------------------------------------------- /img/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/twitter-icon.png -------------------------------------------------------------------------------- /img/facebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/facebook-icon.png -------------------------------------------------------------------------------- /img/instagram-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/instagram-icon.png -------------------------------------------------------------------------------- /img/linkedin-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/linkedin-icon.png -------------------------------------------------------------------------------- /img/snapchat-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/snapchat-icon.png -------------------------------------------------------------------------------- /img/whatsapp-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Digital_Agency/HEAD/img/whatsapp-icon.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | html { 2 | scroll-behavior: smooth; 3 | } 4 | .navbar { 5 | background-image: linear-gradient(to right, #365daf, #3ec9c9) !important; 6 | } 7 | .navabr-nav .nav-item .nav-link { 8 | color: white !important ; 9 | font-weight: 600; 10 | } 11 | 12 | /* Home section */ 13 | #Home { 14 | background-image: linear-gradient(to right, #365daf, #3ec9c9) !important; 15 | color: white; 16 | /* height: 100vh; */ 17 | } 18 | #Home a img { 19 | width: 60px; 20 | margin-right: 7px; 21 | } 22 | #Home a { 23 | color: white; 24 | text-decoration: none; 25 | } 26 | 27 | .wave-banner { 28 | width: 100%; 29 | } 30 | /* services */ 31 | .title::after { 32 | content: ""; 33 | display: block; 34 | background: #365daf; 35 | height: 5px; 36 | width: 200px; 37 | margin: auto; 38 | } 39 | .service_img { 40 | width: 250px; 41 | height: 150px; 42 | } 43 | 44 | .services-button { 45 | background-image: linear-gradient(to right, #365daf, #3ec9c9) !important; 46 | color: white !important; 47 | border: none; 48 | width: 120px; 49 | height: 40px; 50 | margin-left: auto !important; 51 | border-radius: 20px !important; 52 | margin-top: 20px; 53 | } 54 | 55 | .user-image { 56 | width: 150px; 57 | height: 150px; 58 | } 59 | .test_border { 60 | border-left: 5px solid #365daf; 61 | border-radius: 2px; 62 | } 63 | /* social */ 64 | 65 | #social { 66 | background: #f8f9fa; 67 | } 68 | .social_image { 69 | width: 60px; 70 | } 71 | .social_image:hover { 72 | transform: translateY(-10px); 73 | transition: all 0.5s; 74 | } 75 | #footer { 76 | background-image: linear-gradient(to right, #365daf, #3ec9c9) !important; 77 | } 78 | #footer .fas { 79 | font-size: 20px; 80 | background-image: linear-gradient(to right, #365daf, #3ec9c9) !important; 81 | width: 40px; 82 | height: 40px; 83 | border-radius: 4px; 84 | padding-top: 7px; 85 | margin-right: 10px; 86 | text-align: center; 87 | } 88 | #footerbtn { 89 | background-image: linear-gradient(to right, #365daf, #3ec9c9) !important; 90 | margin-top: 20px; 91 | border: none !important; 92 | border-radius: 0 !important; 93 | padding: 8px 15px; 94 | color: white; 95 | } 96 | .wave2 { 97 | width: 100%; 98 | } 99 | .navbar .navbar-nav .nav-item .nav-link.active { 100 | border-bottom: 3px solid #42e718; 101 | transition: all 0.3s; 102 | } 103 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |Subscribe easy tutorials toutube channel to watch more video on Website development,Digital 58 | Markating,Wordpress and graphics desing 59 |
60 |
Watch tutorials
61 |
64 |
68 |
92 |
107 | 109 | Master your language with lessons, quizzes, and projects designed for real-life scenarios. Create portfolio 110 | projects that showcase your new skills to help land your dream job. Affordable Learning. 111 |
112 |
115 | 117 | Learn to code to Build a Better Future for You and for the World. Free courses! We Provide Online Courses 118 | That Are Easy to Grasp. Web development and more. Subscribe To News. View Resources. 119 |
120 |
123 | 125 | watch more video on Website development,Digital Markating,Wordpress and graphics desing 126 |
127 |
132 | 134 | watch more video on Website development,Digital Markating,Wordpress and graphics desing 135 |
136 |
139 | 141 | watch more video on Website development,Digital Markating,Wordpress and graphics desing 142 |
143 |
146 | 148 | watch more video on Website development,Digital Markating,Wordpress and graphics desing 149 |
150 |
169 |
170 | MASUD PERVEZ
171 | Co-founder at xyz
172 |
174 | Subscribe easy tutorials toutube channel to watch more video on Website development,Digital 175 | Markating,Wordpress and graphics desing 176 |
177 |
180 |
181 | Masud Pervez
182 | Director at xyz
183 |
185 | Subscribe easy tutorials toutube channel to watch more video on Website development,Digital 186 | Markating,Wordpress and graphics desing 187 |
188 |
193 |
194 | MASUD PERVEZ
195 | Co-founder at xyz
196 |
198 | Subscribe easy tutorials toutube channel to watch more video on Website development,Digital 199 | Markating,Wordpress and graphics desing 200 |
201 |
204 |
205 | Masud Pervez
206 | Director at xyz
207 |
209 | Subscribe easy tutorials toutube channel to watch more video on Website development,Digital 210 | Markating,Wordpress and graphics desing 211 |
212 |
FIND US ON SOCISAL MEDIA
220 |