├── img ├── bglogo.png ├── logo.png ├── card │ ├── Cash.png │ ├── Google.png │ ├── Paypal.png │ └── Walmart.png └── sides │ └── home-slider.gif ├── font └── myfont.ttf ├── screen └── Screenshot.png ├── index.html ├── js ├── home.js ├── linkcall.js ├── github.js ├── index.js ├── viewdemo.js └── code.js ├── CODE.md ├── my.html ├── package.json ├── project └── index.html ├── SECURITY.md ├── LICENSE ├── css ├── project.css └── index.css ├── new └── index.html ├── svg └── wave.svg └── README.md /img/bglogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahidhk/landingCode/HEAD/img/bglogo.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahidhk/landingCode/HEAD/img/logo.png -------------------------------------------------------------------------------- /font/myfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahidhk/landingCode/HEAD/font/myfont.ttf -------------------------------------------------------------------------------- /img/card/Cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahidhk/landingCode/HEAD/img/card/Cash.png -------------------------------------------------------------------------------- /img/card/Google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahidhk/landingCode/HEAD/img/card/Google.png -------------------------------------------------------------------------------- /img/card/Paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahidhk/landingCode/HEAD/img/card/Paypal.png -------------------------------------------------------------------------------- /img/card/Walmart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahidhk/landingCode/HEAD/img/card/Walmart.png -------------------------------------------------------------------------------- /screen/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahidhk/landingCode/HEAD/screen/Screenshot.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /img/sides/home-slider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahidhk/landingCode/HEAD/img/sides/home-slider.gif -------------------------------------------------------------------------------- /js/home.js: -------------------------------------------------------------------------------- 1 | console.log("home.js"); 2 | datalist(); 3 | 4 | function datalist(){ 5 | 6 | window.location.href="/new"; 7 | 8 | } 9 | -------------------------------------------------------------------------------- /js/linkcall.js: -------------------------------------------------------------------------------- 1 | console.log("hello word"); 2 | function linkapi(){ 3 | window.location.href="/project"; 4 | } 5 | 6 | function callpryvice(){ 7 | window.location.href="https://www.readyoffercareer.com/PrivacyPolicy/" 8 | } -------------------------------------------------------------------------------- /CODE.md: -------------------------------------------------------------------------------- 1 | # Landing Code 2 | 3 | ## index page 4 | use for `index.html`call {new} folder! 5 | 6 | - use | `index > script > new` 7 | - use | `src > index > script > new > html > index ` 8 | 9 | #### Example 10 | 11 | ``` 12 | 13 | 14 | 15 | 16 | 17 | 18 | ``` 19 | -------------------------------------------------------------------------------- /my.html: -------------------------------------------------------------------------------- 1 | 6 | 16 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "animate.css": "^4.1.1", 4 | "bootstrap-icons": "^1.11.3", 5 | "config": "^3.3.11", 6 | "config-js": "^1.1.15" 7 | }, 8 | "devDependencies": { 9 | "@types/node": "^20.11.16", 10 | "@types/webpack": "^5.28.5", 11 | "ts-node": "^10.9.2", 12 | "typescript": "^5.3.3", 13 | "webpack-cli": "^5.1.4" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /js/github.js: -------------------------------------------------------------------------------- 1 | console.log("GitHub.js"); 2 | 3 | document.write(` 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | `); -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- 1 | console.log("Hello Word!"); 2 | var img = document.getElementsByClassName("logo"); 3 | img[0].src="/img/logo.png"; 4 | document.getElementById("title").style="font-size:29px;color:#FF007B;" 5 | 6 | let notetitle = ` 7 | You can create a card with a link on our website. 8 | You can use the code with your help with the code. I use this code style 9 | fashion and animation!` 10 | //the paragraph call 11 | runpara() 12 | function runpara() { 13 | /// the use for let code // 14 | document.getElementById("paragraph").innerHTML=notetitle; 15 | 16 | } 17 | 18 | 19 | -------------------------------------------------------------------------------- /project/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | New Offer 11 | 12 | 13 | 14 | 15 | 16 | 17 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | Use this section to tell people about which versions of your project are 6 | currently being supported with security updates. 7 | 8 | | Version | Supported | 9 | | ------- | ------------------ | 10 | | 5.1.x | :white_check_mark: | 11 | | 5.0.x | :x: | 12 | | 4.0.x | :white_check_mark: | 13 | | < 4.0 | :x: | 14 | 15 | ## Reporting a Vulnerability 16 | 17 | Use this section to tell people how to report a vulnerability. 18 | 19 | Tell them where to go, how often they can expect to get an update on a 20 | reported vulnerability, what to expect if the vulnerability is accepted or 21 | declined, etc. 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 NAHID HK 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 | -------------------------------------------------------------------------------- /js/viewdemo.js: -------------------------------------------------------------------------------- 1 | var data =` 2 | 8 |
9 |

10 | 11 |
12 | This is a Demo ! This page is not link set. 13 |
14 |
15 |
16 |
17 |

18 |
19 |
20 |
21 |
22 |
23 |

$750 Cash App 24 | Gift Card

25 |
26 | Learn More 27 |
28 |
29 |
30 |

31 | 44 | ` 45 | 46 | document.write(data) -------------------------------------------------------------------------------- /css/project.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: webfont; 3 | src: url("https://landingcode.bmhm.sbs/font/myfont.ttf"); 4 | } 5 | /* css font */ 6 | body { 7 | margin: 0; 8 | padding: 0; 9 | font-family: webfont; 10 | } 11 | 12 | .navbig { 13 | height: 60px; 14 | width: 100%; 15 | position: sticky; 16 | top: 0; 17 | background-color: #ffffffbe; 18 | box-shadow: 0 0 3px 0 #000000bb; 19 | backdrop-filter: blur(10px); 20 | z-index: 100; 21 | } 22 | 23 | .title { 24 | font-size: 28px; 25 | position: absolute; 26 | top: 10px; 27 | left: 30px; 28 | } 29 | 30 | .menu-btn { 31 | padding-left: 5px; 32 | padding-right: 5px; 33 | border-radius: 100px; 34 | position: absolute; 35 | right: 20px; 36 | top: 4px; 37 | cursor: pointer; 38 | transition: all 0.3s; 39 | } 40 | 41 | .menu-btn:hover { 42 | background-color: #4680ff; 43 | color: #fff; 44 | } 45 | 46 | .menu-btn i { 47 | font-size: 40px; 48 | } 49 | .bgnote{ 50 | margin: 0; 51 | height: 200px; 52 | background-image: url("/img/sides/home-slider.gif"); 53 | height: 250px; 54 | width: 100%; 55 | background-color: white; 56 | background-position: center; 57 | background-size: cover; 58 | } 59 | .rotex{ 60 | height: 100%; 61 | background-color: #000000a5; 62 | text-align: center; 63 | color: #ffffff; 64 | overflow: hidden; 65 | } 66 | .card{ 67 | height: 400px; 68 | width: 300px; 69 | box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 3px; 70 | border-radius: 10px; 71 | transition: all 0.7s; 72 | } 73 | .card:hover{ 74 | box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px; 75 | } 76 | .ijtml{ 77 | height: 200px; 78 | border-top-right-radius: 10px; 79 | border-top-left-radius: 10px; 80 | } 81 | .ijtml img{ 82 | height: 100%; 83 | width: 100%; 84 | } 85 | .btn{ 86 | padding: 10px; 87 | border: 1px solid #4680ff; 88 | border-radius: 10px; 89 | text-decoration: none; 90 | color: #4680ff; 91 | transition: all 0.4s; 92 | } 93 | .btn:hover{ 94 | background-color: #4680ff; 95 | color: #fff; 96 | } 97 | 98 | .footer{ 99 | color: #fff; 100 | height: 100%; 101 | width: 100%; 102 | background-color: #42445A; 103 | padding-top: 40px; 104 | padding-bottom: 40px; 105 | } 106 | .footer .rotez{ 107 | color: white; 108 | font-size: 30px; 109 | border-bottom: 5px solid #76FF0D; 110 | border-radius: 100px; 111 | padding-left: 10px; 112 | padding-right: 10px; 113 | border-left: 5px solid #76FF0D; 114 | 115 | 116 | } 117 | .xi{ 118 | transition: all 0.4s; 119 | } 120 | .xi:hover{ 121 | cursor: pointer; 122 | padding: 10px; 123 | border: 1px dotted #76FF0D; 124 | border-radius: 100px; 125 | color: #76FF0D; 126 | } -------------------------------------------------------------------------------- /css/index.css: -------------------------------------------------------------------------------- 1 | :root{ 2 | --bgcolor : #4680ff; 3 | --litecolor : #fff; 4 | --barkcolor : #232323; 5 | --boder-color: 1px solid #4680ff; 6 | } 7 | @font-face { 8 | font-family:myfont ; 9 | src: url("/font/myfont.ttf"); 10 | } 11 | 12 | body{ 13 | margin: 0; 14 | padding: 0; 15 | font-family: myfont; 16 | } 17 | .nav{ 18 | position: sticky; 19 | top: 0; 20 | height: 80px; 21 | width: 100%; 22 | background-image: linear-gradient(260deg,#2B2B2BA1,#9A9A9AA1); 23 | backdrop-filter: blur(3px); 24 | } 25 | 26 | .main-box{ 27 | text-align: center; 28 | height: 250px; 29 | width: 100%; 30 | background-image: url("/svg/wave.svg"); 31 | background-size: cover; 32 | } 33 | div{ 34 | margin: 0; 35 | } 36 | .paragraph{ 37 | color:#fff; 38 | width: 340px; 39 | } 40 | .urlbox{ 41 | transition: all ease 0.3s; 42 | height: 40px; 43 | width: 300px; 44 | background-color: #FF007B00; 45 | border: 2px solid #FF007B; 46 | border-radius: 10px; 47 | text-align: center; 48 | outline: none; 49 | color: #FF007B; 50 | } 51 | .urlbox:hover{ 52 | background-color: #ff007ba1; 53 | color: #fff; 54 | cursor: pointer; 55 | } 56 | n{ 57 | color: red; 58 | } 59 | i{ 60 | font-size: 24px; 61 | } 62 | .input-box{ 63 | height: 30px; 64 | width: 280px; 65 | background-color: #4680ff00; 66 | outline: none; 67 | outline-color: none; 68 | border: none; 69 | color: #4680ff; 70 | cursor: pointer; 71 | font-family: myfont; 72 | } 73 | fieldset{ 74 | height: 100%; 75 | width: 320px; 76 | } 77 | .lad{ 78 | height: 120px; 79 | } 80 | .btn{ 81 | transition: all 0.4s; 82 | height: 40px; 83 | width: 200px; 84 | background-color: #42445A00; 85 | border: 1px solid #000000; 86 | border-radius: 5px; 87 | cursor: pointer; 88 | } 89 | .btn:hover{ 90 | background-color: #000; 91 | color: #fff; 92 | } 93 | button{ 94 | cursor: pointer; 95 | } 96 | .wave{ 97 | padding: 3px; 98 | padding-top: 10px; 99 | background-color: #E5E5E5; 100 | } 101 | .younin{ 102 | height: 450px; 103 | width: 340px; 104 | background-color: #fff; 105 | position: fixed; 106 | top: 0; 107 | left: 30%; 108 | top: 10%; 109 | border-radius: 10px; 110 | box-shadow: 0 0 100px 0 #000; 111 | } 112 | .myhtml{ 113 | height: 360px; width: 334px;outline: none;border-radius: 10px; 114 | } 115 | .vcc{display: none;} 116 | .remon{ 117 | height: 40px; 118 | width: 50px; 119 | border: 1px solid black; 120 | border-radius: 4px; 121 | background-color: #fff; 122 | cursor: pointer; 123 | transition: all 0.3s; 124 | } 125 | .remon:hover{ 126 | background-color: #000; 127 | color: #fff; 128 | } 129 | @media only screen and (max-width: 600px) { 130 | .younin{ 131 | height: 450px; 132 | width: 340px; 133 | background-color: #fff; 134 | position: fixed; 135 | top: 0; 136 | left: 5%; 137 | top: 10%; 138 | border-radius: 10px; 139 | box-shadow: 0 0 100px 0 #000; 140 | } 141 | } -------------------------------------------------------------------------------- /new/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | 11 | 12 | 13 | Landing Code 14 | 15 | 16 | 21 | 22 |
23 | 24 |
25 |

26 |

27 |
28 | 29 | 30 | 31 |
32 | 33 |

34 |
35 | 36 |
37 | 38 | 39 | 40 |
41 |
42 |
43 | 44 | 45 | 53 |
54 |
55 |
56 | Site Name * 57 | 58 | 59 |
60 | 61 | 62 |
63 | Offer Nmae * 64 | 66 | 67 |
68 | 69 | 70 | 71 |
72 | 73 | 74 | 75 |

76 | 77 | 78 |
79 | 80 |
81 | 82 |

83 |
84 | 85 |           86 |      87 |      88 |      89 | 90 | 91 |
92 |
93 | 94 | 95 | 96 | 97 | 98 |

99 | 100 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | -------------------------------------------------------------------------------- /js/code.js: -------------------------------------------------------------------------------- 1 | // the dynamic code 2 | console.log("code.js ") 3 | //rt let cod 4 | 5 | 6 | function mycan(){ 7 | var contol= document.getElementById("category").value; 8 | if (contol === "add") { 9 | window.location.href="https://t.me/nahidhk" 10 | } else { 11 | 12 | } 13 | } 14 | 15 | 16 | function loadmydata(){ 17 | //url 18 | var link = document.getElementById("url").value; 19 | // catagory 20 | var category = document.getElementById("category").value; 21 | // site name 22 | var site = document.getElementById("site").value; 23 | /// offer name 24 | var ofname = document.getElementById("ofname").value; 25 | const host = "landing-code.vercel.app"; 26 | var dataapp = ` 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | ${site} 37 | 38 | 39 | 40 | 41 | 47 |
48 |

49 | 50 |
51 | The offer is a All time Best offer shears. this offer is a only USA today offer! 52 |
53 |
54 |
55 |
56 |

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

${ofname}

63 |
64 | Learn More 65 |
66 |
67 |
68 |

69 | 82 | 84 | 85 | 86 | 87 | ` 88 | document.getElementById('mainio').classList="younin animate__animated animate__bounceIn"; 89 | document.getElementById('pullio').innerHTML=dataapp; 90 | } 91 | 92 | function editapp(){ 93 | document.getElementById('mainio').classList="younin animate__animated animate__bounceOut"; 94 | 95 | } 96 | 97 | /// my copy app data 98 | function mytextcopy(){ 99 | var copyhtml = document.getElementById("pullio"); 100 | copyhtml.select(); 101 | copyhtml.setSelectionRange(0, 99999); 102 | navigator.clipboard.writeText(copyhtml.value); 103 | setTimeout(clogeapp, 1000); 104 | setTimeout(apsmyrouter, 700); 105 | apprunio(); 106 | } 107 | 108 | function apsmyrouter(){ 109 | document.getElementById("outline").classList="bi bi-copy" 110 | } 111 | ////app run 112 | function apprunio(){ 113 | document.getElementById("outline").classList="bi bi-clipboard-check" 114 | } 115 | 116 | // apk cloge 117 | function clogeapp(){ 118 | document.getElementById('mainio').classList="younin animate__animated animate__bounceOutDown"; 119 | } -------------------------------------------------------------------------------- /svg/wave.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |

3 | 4 | Logo 5 | 6 | 7 |

landingCode

8 | 9 |

10 | The repository is a use for new web page. This website use for the user create coustom (html) code and use the coustom html code that use an animiston (US) unic system ! 11 |
12 |
13 | Explore the docs » 14 |
15 |
16 | View Demo 17 | . 18 | Report Bug 19 | . 20 | Request Feature 21 |

22 |

23 | 24 | ![Downloads](https://img.shields.io/github/downloads/nahidhk/landingCode/total) ![Contributors](https://img.shields.io/github/contributors/nahidhk/landingCode?color=dark-green) ![Forks](https://img.shields.io/github/forks/nahidhk/landingCode?style=social) ![Stargazers](https://img.shields.io/github/stars/nahidhk/landingCode?style=social) ![Issues](https://img.shields.io/github/issues/nahidhk/landingCode) ![License](https://img.shields.io/github/license/nahidhk/landingCode) 25 | 26 | ## Table Of Contents 27 | 28 | * [About the Project](#about-the-project) 29 | * [Built With](#built-with) 30 | * [Getting Started](#getting-started) 31 | * [Prerequisites](#prerequisites) 32 | * [Installation](#installation) 33 | * [Usage](#usage) 34 | * [Roadmap](#roadmap) 35 | * [Contributing](#contributing) 36 | * [License](#license) 37 | * [Authors](#authors) 38 | * [Acknowledgements](#acknowledgements) 39 | 40 | ## About The Project 41 | 42 | ![Screen Shot](https://raw.githubusercontent.com/nahidhk/landingCode/ecee4f4190700ed9372a3e3184320d25128c8d7f/screen/Screenshot.png) 43 | 44 | You can create a card with a link on our website. You can use the code with your help with the code. I use this code style fashion and animation! 45 | 46 | ## Built With 47 | 48 | The repository is a use for new web page. This website use for the user create coustom (html) code and use the coustom html code that use an animiston (US) unic system ! 49 | 50 | ## Getting Started 51 | 52 | 53 | ### Prerequisites 54 | 55 | This is an example of how to list things you need to use the software and how to install them. 56 | 57 | * npm 58 | 59 | ```sh 60 | npm install npm@latest -g 61 | ``` 62 | 63 | ### Installation 64 | 65 | 1. Get a free API Key at [https://landingcode.bmhm.sbs/](https://landingcode.bmhm.sbs/) 66 | 67 | 2. Clone the repo 68 | 69 | ```sh 70 | git clone https://github.com/nahidhk/landingCode.git 71 | ``` 72 | 73 | 3. Install NPM packages 74 | 75 | ```sh 76 | npm install 77 | ``` 78 | 79 | 4. Enter your API in `config.js` 80 | 81 | ```JS 82 | const API_KEY = 'ENTER YOUR API'; 83 | ``` 84 | 85 | ## Usage 86 | 87 | Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources. 88 | 89 | _For more examples, please refer to the [Documentation](https://example.com)_ 90 | 91 | ## Roadmap 92 | 93 | See the [open issues](https://github.com/nahidhk/landingCode/issues) for a list of proposed features (and known issues). 94 | 95 | ## Contributing 96 | 97 | Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**. 98 | * If you have suggestions for adding or removing projects, feel free to [open an issue](https://github.com/nahidhk/landingCode/issues/new) to discuss it, or directly create a pull request after you edit the *README.md* file with necessary changes. 99 | * Please make sure you check your spelling and grammar. 100 | * Create individual PR for each suggestion. 101 | * Please also read through the [Code Of Conduct](https://github.com/nahidhk/landingCode/blob/main/CODE_OF_CONDUCT.md) before posting your first idea as well. 102 | 103 | ### Creating A Pull Request 104 | 105 | 1. Fork the Project 106 | 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 107 | 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) 108 | 4. Push to the Branch (`git push origin feature/AmazingFeature`) 109 | 5. Open a Pull Request 110 | 111 | ## License 112 | 113 | MIT License 114 | 115 | Copyright (c) 2024 NAHID HK 116 | 117 | Permission is hereby granted, free of charge, to any person obtaining a copy 118 | of this software and associated documentation files (the "Software"), to deal 119 | in the Software without restriction, including without limitation the rights 120 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 121 | copies of the Software, and to permit persons to whom the Software is 122 | furnished to do so, subject to the following conditions: 123 | 124 | The above copyright notice and this permission notice shall be included in all 125 | copies or substantial portions of the Software. 126 | 127 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 128 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 129 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 130 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 131 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 132 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 133 | SOFTWARE. 134 | 135 | ## Authors 136 | 137 | * **Nahid HK** - *Web Developer* - [Nahid HK](https://github.com/nahidhk) - *Create A Landing Code Project* 138 | 139 | ## top Repositors 140 | 141 | * [Developer find](https://github.com/nahidhk/developer-Find) 142 | * [NotePad-App](https://github.com/nahidhk/NotePad-App) 143 | * [Landing card ](https://github.com/nahidhk/Landing-card) 144 | * [mail-verify-system](https://github.com/nahidhk/mail-verify-system-) 145 | --------------------------------------------------------------------------------