How to Design Newsletter Form in HTML and CSS

হ্যালো ভিউয়ারস, আশা করি ভালো আছেন। Notesaid24 ওয়েবসাইটে আপনাকে স্বাগতম। আজকে আপনাদের মাঝে শেয়ার করবো; কিভাবে Newsletter ফরম HTML এবং CSS এর...

হ্যালো ভিউয়ারস, আশা করি ভালো আছেন। Notesaid24 ওয়েবসাইটে আপনাকে স্বাগতম। আজকে আপনাদের মাঝে শেয়ার করবো; কিভাবে Newsletter ফরম HTML এবং CSS এর মাধ্যমে ডিজাইন করা যায় 

How to Design Newsletter Form in HTML and CSS


How to Design Newsletter Form in HTML and CSS


প্রোজেক্ট ধারণাঃ

  • নামঃ Design Newsletter Form in HTML and CSS
  • ভাষাঃ HTML & CSS
  • লাইসেন্সঃ ফ্রি
  • রেস্পনসিভঃ না   
  • অথরঃ Codingsrc24

প্রোজেক্ট করতে যা জানা প্রয়োজনঃ

  • বেসিক HTML
  • বেসিক CSS
  • Margin & Padding ( মার্জিন & প্যাডিং )
  • Display Flex
  • প্রজেক্টে এ কীভাবে Google Fonts ব্যবহার করতে হয় তা সম্পর্কে ধারণা রাখতে হবে।


আশা করি এসব জানা থাকলে এই প্রোজেক্ট করতে কোন সমস্যা নেই, তবে না জানা থাকলেও সমস্যা নেই প্রোজেক্ট করার সাথে সাথে ধারনা হয়ে যাবে। চলুন শুরু করা যাক……………


Newsletter ফরম ডিজাইন করার জন্য, প্রথমে আপনাকে দুটি ফাইল তৈরি করতে হবে একটি হলো index.html আর অন্যটি হলো style.css ( নামের ব্যপারে কোন বাধ্যবাধকতা নেই তবে ডট নোটেশনের পর .html এবং .css এগুলো ঠিক রাখতে হবে) নিন্মে index.html এবং style.css ফাইল দেওয়া হয়েছে। 



প্রথমত, আপনি একটা HTML ফাইল (index.html) তৈরি করে নিন, নিচের ব্লকে দেওয়া কোডটি Copy করে আপনার এইচটিএমএল (HTML) ফাইলে Paste করে নিন মনে রাখবেন
(.html)
এক্সটেনশন যেন ঠিক থাকে

HTML কোড ব্লকঃ


<body>
  <div class="container">
    <div class="outerWrapper">
      <div class="innerWrapper">
        <div class="newsLetterIcon">
          <img src="./image/mail-box.png" alt="" />
        </div>
        <div class="newsLetterInfo">
          <h1>Join Us</h1>
          <p>Subscribe our newsletter and stay up to date about us!</p>
        </div>
      </div>
      <form action="">
        <div class="inputform">
          <input
            type="email"
            name="email"
            placeholder="Enter Your Email"
            id="email"
            required
          />
          <input type="submit" value="Subscribe Now" />
        </div>
      </form>
    </div>
  </div>
</body>


দ্বিতীয়ত, আপনি একটা CSS ফাইল (style.css) তৈরি করে নিন, নিচের ব্লকে দেওয়া কোডটি Copy করে আপনার সিএসএস (CSS) ফাইলে Paste করে নিন মনে রাখবেন
(.css)
এক্সটেনশন যেন ঠিক থাকে

CSS কোড ব্লকঃ


@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");
body {
  max-width: 920px;
  width: 96%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  color: #363636;
  font-family: "Poppins", sans-serif;
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
}
.outerWrapper {
  box-shadow: 0 0 10px hsl(0, 0%, 35%);
  padding: 40px;
  position: relative;
  border-radius: 10px;
}
.outerWrapper::after {
  position: absolute;
  content: "X";
  top: 5%;
  right: 5%;
  font-weight: 700;
  font-size: 18px;
  color: rgb(109, 109, 109);
  cursor: pointer;
}
.innerWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newsLetterIcon {
  display: flex;
  flex: 1;
}
.newsLetterIcon img {
  width: 250px;
}
.newsLetterInfo {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.newsLetterInfo h1 {
  font-size: 48px;
  font-weight: 700;
  font-variant: small-caps;
  margin-bottom: 0;
}
.newsLetterInfo p {
  font-size: 16px;
  margin-top: 0;
}
.inputform {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.inputform input:not([type="submit"]) {
  display: block;
  width: 50%;
  height: 40px;
  border: 1px solid #c7c7c7;
  outline: none;
  padding-left: 10px;
  font-size: 16px;
  color: #363636;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.inputform input[type="email"]:focus {
  border: 1px solid #fb4a59;
}
.inputform input[type="submit"] {
  width: 140px;
  height: 44px;
  font-size: 16px;
  border: none;
  background-color: #fb4a59;
  color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
}


আশা করি আপনি কোড টি সফলভাবে রান করাতে পেরেছেন প্রোজেক্ট টি কেমন লেগেছে অবশ্যই  কমেন্ট করে জানাবেন, আর যদি কোন ভূল হয়ে থাকে তাহলে ক্ষমা সুন্দর দৃষ্টিতে দেখবেন এবং কোথায় ভূল হয়েছে কমেন্ট করে জানাবেন। আর আপনাদের কেমন ধরনের প্রোজেক্ট লাগবে তাও জানাবেন , ইনশাআল্লাহ তা দেওয়ার চেষ্টা করবো। আর ওয়েবসাইটটি বন্ধুদের মাঝে শেয়ার করবেন। আজকের মতই এখানেই বিদায় নিলাম, ইনশাআল্লাহ  দেখা হবে অন্য কোন প্রোজেক্ট এ। ভালো থাকবেন সুস্থ থাকবেন। আল্লাহ হাফেয।

COMMENTS

Name

Adjective,1,Adjective of Number,1,Adverb,1,Amplification,94,Application,19,Articles,2,Bangladesh cricket.,1,Business Letter,1,Case,1,Certificate,10,Class 10,82,Class 11,48,Class 12,48,Class 3,11,Class 4,17,Class 5,17,Class 6,7,Class 7,7,Class 8,47,Class 9,96,Clause,1,Complaint Letter,2,Composition,58,Computer,1,Conjunction,2,Contact Us Form,2,Coordinating Conjunction,1,CSS,27,CSS Form,1,CSS Modules,1,Dakhil Class 7,13,Dakhil Class 8,13,Dakhil Class 9,15,Degrees,2,Demonstrative Pronoun,1,Dialogue,18,Distributive Pronoun,1,E-book,45,Email,1,English Grammar,163,Error Fix,2,Essay,107,Express JS,8,Express Server,4,Express Server Create,1,Form,1,Gender,1,Git,1,Git Command,1,Grammar,1,H10 Error,1,Heroku,4,HSC Result,1,HTML,29,HTML & CSS,1,HTML Form,2,Indefinite Pronoun,1,Interjection,1,Interrogative Pronoun,1,Interview Question,2,Irregular Verb,1,J obs,1,JavaScript,45,Job Application,13,Jobs,12,Joining Letter,5,Language,1,Letter,91,Log in Form,1,Login Form,2,Madrasah Books,33,Madrasah Letter,11,Madrasah Level Books,9,Microsoft Word,2,MongoDB,3,Narration,4,NCTB Books,192,NCTB Books 2023,41,NCTB Books 2024,118,New Year Message,1,New Year SMS,1,Newspaper Report,14,Node,6,Node Command,1,Node JS,9,Node Server,2,Notice,6,Noun,2,NPM,2,Number,1,Paragraph,386,Participle,5,Parts of Speech,2,Person,1,Personal Pronoun,1,Phrase,9,Phrase And Idioms,6,Pomodoro Timer,2,Poster Writing,6,Preposition,17,Problem Solving,27,Programming,12,Programming eBook,45,Programming Project,30,Pronominal Adjective,1,Pronoun,1,Pronunciation,1,Punctuation,3,Railway,1,Ramadan,2,React,17,Reflexive Pronoun,1,Register Form,1,Regular Verb,1,Relative Pronoun,1,Request Letter,13,Resignation Letter,3,Responsive Form,1,Resume,6,Right Form of Verbs,3,School Level Books,11,Sentence,1,Short Composition,50,Sign in Form,2,Signup Form,1,Simple Adverb,1,Slogan,3,SMS,1,SQL,1,Story,37,Strong Verb,1,Subject & Predicate,1,Subordinate Clause,1,Subordinating Conjunction,1,Syllable,1,Tag Questions,1,Teachers Dairy,2,Teachers Guide,31,Teachers Guide 2024,67,Teachers Guide Books 2024,5,Tense,14,test status of Bangladesh in cricket,1,Tips & Tricks,8,Transformation of Sentence,15,Tutorial,59,TypeScript,18,Use of Conjunction,1,Verb,2,Verbal,1,Vercel,2,Vercel Deploy,2,Vercel Server,1,Vocabulary,6,Voice,3,Weak Verb,1,অনুচ্ছেদ,18,আবেদনপত্র,44,আমন্ত্রণপত্র,2,আমার বাংলা বই,12,ইসলামিক,231,উক্তি,3,চাকরির খবর,10,তৃতীয় শ্রেণি,25,দরখাস্ত,35,নিমন্ত্রণপত্র,2,নোটিশ,3,পত্র,51,প্রাথমিক বিজ্ঞান,13,প্রোগ্রামিং গল্প,25,বাণী,3,বাংলা নোটস,1,বাংলা রচনা,2,ব্যবসা সংক্রান্ত পত্র,1,ভাবসম্প্রসারণ,18,সাপ্তাহিক চাকরির খবর,13,সারমর্ম,5,সারাংশ,4,হ্যান্ডনোট,125,
ltr
item
Notesaid24 | Free Online Notes & Resources for Students: How to Design Newsletter Form in HTML and CSS
How to Design Newsletter Form in HTML and CSS
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAvyIPC1VztMqWsr7ZoNevsDX_MAa3CIq_taZuRf-Gb5GBooSvbpf4BLpiXzcCq82Pud9YPH931NThPMV4bOyIsGSQrNj4kxB0foSOg9iKLZmO0gmwFCVOg5Uvc1eZg3G-0V_Ia9J2pYxoflQFWq48CbUDqh73QmFwc3jChgALwJFxjkLB0MmsQ8wyGM1Y/s16000/NewsLetter%20Page%20Design.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAvyIPC1VztMqWsr7ZoNevsDX_MAa3CIq_taZuRf-Gb5GBooSvbpf4BLpiXzcCq82Pud9YPH931NThPMV4bOyIsGSQrNj4kxB0foSOg9iKLZmO0gmwFCVOg5Uvc1eZg3G-0V_Ia9J2pYxoflQFWq48CbUDqh73QmFwc3jChgALwJFxjkLB0MmsQ8wyGM1Y/s72-c/NewsLetter%20Page%20Design.png
Notesaid24 | Free Online Notes & Resources for Students
https://www.notesaid24.com/2023/07/how-to-design-newsletter-form-in-html.html
https://www.notesaid24.com/
https://www.notesaid24.com/
https://www.notesaid24.com/2023/07/how-to-design-newsletter-form-in-html.html
true
251490074241553958
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Post of Content