├── README.md ├── README (2).md ├── landing.html └── style.css /README.md: -------------------------------------------------------------------------------- 1 | # landing-page 2 | landing page 3 | -------------------------------------------------------------------------------- /README (2).md: -------------------------------------------------------------------------------- 1 | # Landing-Page 2 | Landing page 3 | -------------------------------------------------------------------------------- /landing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Landing Page 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 |

Email: navedharajarajan@gmail.com | Call: +91 6383547679

16 |
17 |
18 | Request a Consult 19 |
20 |
21 | 32 |
33 | 34 | 35 |
36 |
37 |

Creative Digital Agency

38 |

We are a team of creative digital professionals dedicated to helping students develop real-world skills in web development, design, and coding. Whether you are a beginner or an advanced learner, we provide the resources and guidance to grow your skills.

39 | Read More 40 | Request a Consult 41 |
42 |
43 | 44 | 45 |
46 |
47 | 🚀 48 |

Launch Business

49 |
50 |
51 | 💻 52 |

Online Support Team

53 |
54 |
55 | 🕒 56 |

Time Management

57 |
58 |
59 | 60 | 61 |
62 |
63 |

About Us

64 |

15 years, we are passionate about achieving better results for our clients.

65 | Read More 66 |
67 | 68 |
69 | 70 | 71 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | margin: 0; 4 | font-family: Arial, sans-serif; 5 | color: #333; 6 | } 7 | 8 | 9 | .top-bar { 10 | background-color: #3311f4; 11 | color: white; 12 | padding: 10px; 13 | text-align: right; 14 | font-size: 14px; 15 | } 16 | 17 | .navbar { 18 | display: flex; 19 | justify-content: space-between; 20 | padding: 20px; 21 | background-color: #fff; 22 | box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 23 | } 24 | 25 | .nav-menu { 26 | list-style-type: none; 27 | display: flex; 28 | gap: 20px; 29 | } 30 | 31 | .nav-menu li a { 32 | text-decoration: none; 33 | color: #333; 34 | font-weight: bold; 35 | } 36 | 37 | .btn { 38 | padding: 10px 20px; 39 | border-radius: 20px; 40 | text-decoration: none; 41 | font-weight: bold; 42 | transition: background-color 0.3s; 43 | } 44 | 45 | .primary-btn { 46 | background-color: #15caee; 47 | color: white; 48 | } 49 | 50 | .secondary-btn { 51 | background-color: transparent; 52 | color: #14d6eb; 53 | border: 2px solid #0abee1; 54 | } 55 | 56 | .primary-btn:hover, .secondary-btn:hover { 57 | background-color: #4e16cf; 58 | } 59 | 60 | .hero { 61 | background-image: url('path/to/hero-bg.jpg'); 62 | background-size: cover; 63 | color: white; 64 | padding: 100px 20px; 65 | text-align: center; 66 | } 67 | 68 | .hero h1 { 69 | font-size: 50px; 70 | margin: 0; 71 | } 72 | 73 | .hero p { 74 | font-size: 18px; 75 | margin: 10px 0; 76 | } 77 | 78 | 79 | .services { 80 | display: flex; 81 | justify-content: center; 82 | background-color: #f5f5f5; 83 | padding: 40px 0; 84 | } 85 | 86 | .service-box { 87 | margin: 0 20px; 88 | text-align: center; 89 | } 90 | 91 | .icon { 92 | font-size: 40px; 93 | } 94 | 95 | .service-box h3 { 96 | margin: 10px 0; 97 | } 98 | 99 | 100 | .about-us { 101 | display: flex; 102 | justify-content: space-around; 103 | align-items: center; 104 | padding: 60px 20px; 105 | background-color: #fff; 106 | } 107 | 108 | .about-text { 109 | max-width: 500px; 110 | } 111 | 112 | .about-image img { 113 | width: 300px; 114 | border-radius: 10px; 115 | } 116 | 117 | 118 | .our-services { 119 | text-align: center; 120 | padding: 60px 20px; 121 | background-color: #f5f5f5; 122 | } 123 | 124 | .service-grid { 125 | display: flex; 126 | justify-content: center; 127 | gap: 20px; 128 | } 129 | 130 | .service-item { 131 | text-align: center; 132 | max-width: 200px; 133 | } 134 | 135 | .service-item img { 136 | width: 100%; 137 | border-radius: 10px; 138 | } 139 | --------------------------------------------------------------------------------