By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
rocoderesrocoderes
  • Home
  • HTML & CSS
    • Login and Registration Form
    • Card Design
    • Loader
  • JavaScript
  • Python
  • Internet
  • Landing Pages
  • Tools
    • Google Drive Direct Download Link Generator
    • Word Count
  • Games
    • House Painter
Notification Show More
Latest News
How to set the dropdown value by clicking on a table row
Javascript – How to set the dropdown value by clicking on a table row
JavaScript
Attempting to increase the counter, when the object's tag exist
Javascript – Attempting to increase the counter, when the object’s tag exist
JavaScript
Cycle2 JS center active slide
Javascript – Cycle2 JS center active slide
JavaScript
Can import all THREE.js post processing modules as ES6 modules except OutputPass
Javascript – Can import all THREE.js post processing modules as ES6 modules except OutputPass
JavaScript
How to return closest match for an array in Google Sheets Appscript
Javascript – How to return closest match for an array in Google Sheets Appscript
JavaScript
Aa
Aa
rocoderesrocoderes
Search
  • Home
  • HTML & CSS
    • Login and Registration Form
    • Card Design
    • Loader
  • JavaScript
  • Python
  • Internet
  • Landing Pages
  • Tools
    • Google Drive Direct Download Link Generator
    • Word Count
  • Games
    • House Painter
Follow US
High Quality Design Resources for Free.
rocoderes > JavaScript > Create a Certificate Generator Website in JavaScript
JavaScript

Create a Certificate Generator Website in JavaScript

Rohan750
Last updated: 2022/08/13 at 1:57 PM
Rohan750
Share
7 Min Read

Contents
index.htmlstyle.cssAll index.js code Here
If you want to Get certificate got to https://certificate-generator.netlify.app/ .this Create a certificate generator you an download it certificate in pdf format.Now we see how we have to make it. We have made it Html, CSS and JavaScript. this is going to be very easy.
 
First we need a template and We need a template in a PDF format. Here I used Canva Website. Go to Canva.com create an account first then search for certificate.
 
canva.com
There you will get a lot of certificates. select what you like and download it.And customize that template according to you.I used this template here
templete

here we open our code editor. And here we create an index.html,style.css and index.js file.First we make the front-end 

index.html

 <!DOCTYPE html>  
 <html lang="en">  
 <head>  
   <meta charset="UTF-8">  
   <meta name="viewport" content="width=device-width, initial-scale=1.0">  
   <title>Certificate Generator using javascript</title>  
   <link rel="stylesheet" href="style.css">  
   <link href="https://fonts.googleapis.com/css2?family=Archivo+Narrow&display=swap" rel="stylesheet">  
   <link rel="icon" type="image/png" href="favicon.png"/>  
 </head>  
 <body>  
   <header>  
     <div class="heading_text">  
       <h1>Create Certificates for Free in Minutes</h1>  
       <h2>Make unique certificates in minutes. No design skills needed.</h2>  
     </div>  
   </header>  
   <main>  
     <div>  
       <input type="text" name="Name" class="question" id="name" required autocomplete="off" />  
       <label for="name"><span>What's your name?</span></label>  
       <input type="submit" id="submitBtn" value="Get Certificate"/>  
     </div>  
   </main>  
   <script src="https://unpkg.com/pdf-lib/dist/pdf-lib.min.js"></script>  
   <script src="https://unpkg.com/@pdf-lib/fontkit@0.0.4"></script>  
   <script src="filesaver.js"></script>  
   <script src="index.js"></script>  
 </body>  
 </html>  

style.css


*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
   
    /* font-size: 1.5em; */
}

header{
    padding: 150px;
    background-image: url('bg_header.jfif');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
   
    text-align: center;
    position: relative;
}
 .heading_text h1{
    text-align: center;
    font-size: 54px;
    margin-bottom:10px
    /* font-weight: 900; */
} 
main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main form button{
      margin-top:25px ;
  }
  button {
    background: #8bc34a;
    color: #fff;
    border: none;
    font-size: 0.8em;
    padding: 15px 15px;
    /* margin: 20px; */
    border-radius: 5px;
    cursor: pointer;
  }
input,
span,
label{
  font-family: 'Ubuntu', sans-serif;
  display: block;
  margin: 10px;
  padding: 5px;
  border: none;
  font-size: 22px;
}
input:focus {
    outline: 0;
  }
input.question{
  font-size: 48px;
  font-weight: 300;
  border-radius: 2px;
  margin: 0;
  border: none;
  width: 80%;
  background: rgba(0, 0, 0, 0);
  transition: padding-top 0.2s ease, margin-top 0.2s ease;
  overflow-x: hidden;
}
input.question + label{
  display: block;
  position: relative;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  width: 10%;
  border-top: 1px solid red;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
  height: 0px;
}
input.question:focus + label{
  width: 80%;
}
input.question:focus,
input.question:valid {
  padding-top: 35px;
}

input.question:focus + label > span,
input.question:valid + label > span {
  top: -100px;
  font-size: 22px;
  color: #333;
}



input.question:valid + label {
  border-color: green;
}

input.question:invalid{
  box-shadow: none;
}

input.question + label > span{
  font-weight: 300;
  margin: 0;
  position: absolute;
  color: #8F8F8F;
  font-size: 48px;
  top: -66px;
  left: 0px;
  z-index: -1;
  -webkit-transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

input[type="submit"] {
    background: #8bc34a;
    color: #fff;
    border: none;
    font-size: 0.8em;
    padding: 15px 15px;
    /* margin: 20px; */
    border-radius: 5px;
    cursor: pointer;
}

Now we write the code in index.js,First of all we are going to use a library here, its name is pdf lib– pdf-lib.js.org.From this library, we will fetch the PDF and with the help of JavaScript, we will put the text there. The text that we are going to put here We will download a font here Go to https://fonts.google.com/ And search the font Sanchez and download it.

First we need to fetch pdf

const generatePDF = async (name) => {
    const existingPdfBytes = await fetch("Certificate.pdf").then((res) =>
      res.arrayBuffer()
    );

After that we have to load pdf


const generatePDF = async (name) => {
    const existingPdfBytes = await fetch("Certificate.pdf").then((res) =>
      res.arrayBuffer()
    );

    // Load a PDFDocument from the existing PDF bytes
    const pdfDoc = await PDFDocument.load(existingPdfBytes);
    pdfDoc.registerFontkit(fontkit);

Now we have write the code for the custom font


const generatePDF = async (name) => {
    const existingPdfBytes = await fetch("Certificate.pdf").then((res) =>
      res.arrayBuffer()
    );

    // Load a PDFDocument from the existing PDF bytes
    const pdfDoc = await PDFDocument.load(existingPdfBytes);
    pdfDoc.registerFontkit(fontkit);

    
  //get font
  const fontBytes = await fetch("Sanchez-Regular.ttf").then((res) =>
  res.arrayBuffer()
);

Draw a string of text diagonally across the first


// Embed our custom font in the document
  const SanChezFont  = await pdfDoc.embedFont(fontBytes);
   // Get the first page of the document
   const pages = pdfDoc.getPages();
   const firstPage = pages[0];
 
   // Draw a string of text diagonally across the first page
   firstPage.drawText(name, {
     x: 300,
     y: 270,
     size: 58,
     font: SanChezFont ,
     color: rgb(0.2, 0.84, 0.67),
   });
 

When after entering name in the certificate, now we have to download the certificate.We are going to use the filesaver.js library to download the certificate. 

Goto link https://github.com/eligrey/FileSaver.js After opening the link, go to the dist. folder and download FileSaver.js file

Now write code for download certificate


// Serialize the PDFDocument to bytes (a Uint8Array)
  const pdfDataUri = await pdfDoc.saveAsBase64({ dataUri: true });
  saveAs(pdfDataUri,"newcertificate.pdf")

All index.js code Here




console.log("hello")
const userName = document.getElementById("name");
const submitBtn = document.getElementById("submitBtn");
const { PDFDocument, rgb, degrees } = PDFLib;


submitBtn.addEventListener("click", () => {
    const val =userName.value;
    if (val.trim() !== "" && userName.checkValidity()) {
        // console.log(val);
        generatePDF(val);
      } else {
        userName.reportValidity();
      }
});
const generatePDF = async (name) => {
    const existingPdfBytes = await fetch("Certificate.pdf").then((res) =>
      res.arrayBuffer()
    );

    // Load a PDFDocument from the existing PDF bytes
    const pdfDoc = await PDFDocument.load(existingPdfBytes);
    pdfDoc.registerFontkit(fontkit);

    
  //get font
  const fontBytes = await fetch("Sanchez-Regular.ttf").then((res) =>
  res.arrayBuffer()
);
  // Embed our custom font in the document
  const SanChezFont  = await pdfDoc.embedFont(fontBytes);
   // Get the first page of the document
   const pages = pdfDoc.getPages();
   const firstPage = pages[0];
 
   // Draw a string of text diagonally across the first page
   firstPage.drawText(name, {
     x: 300,
     y: 270,
     size: 58,
     font: SanChezFont ,
     color: rgb(0.2, 0.84, 0.67),
   });
 
  // Serialize the PDFDocument to bytes (a Uint8Array)
  const pdfDataUri = await pdfDoc.saveAsBase64({ dataUri: true });
  saveAs(pdfDataUri,"newcertificate.pdf")
};

Now ready the certificate generator website

source code

https://github.com/patelrohan750/certificate_generator

👉 If you want to clear the basic concepts of JavaScript you must read this:
➜ 15 JavaScript Basic Concepts You Should Know

Related

Subscribe to Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

Share this Article
Facebook Twitter Email Print
What do you think?
Love2
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink1
Previous Article Gaming Website Using HTML How to Make a Gaming Website Using HTML, CSS, and JavaScript
Next Article How to Print Hello World Using JavaScript with Three Diffrent Ways How to Print Hello World Using JavaScript with Three Different Ways
113 Comments 113 Comments
  • GujjuCamper says:
    September 22, 2020 at 2:15 pm

    It's very useful

    Reply
  • o terrorista morto says:
    June 14, 2021 at 11:16 pm

    I’m really enjoying the design and layout of your blog.
    It’s a very easy on the eyes which makes it much more enjoyable for me to come here and
    visit more often. Did you hire out a developer to create your theme?
    Exceptional work!

    Reply
    • patelrohan7500 says:
      June 15, 2021 at 3:58 am

      thank you but I am the developer

      Reply
  • patelrohan7500 says:
    July 2, 2021 at 3:50 am

    thanks

    Reply
  • Rosetta says:
    July 9, 2021 at 1:10 pm

    What’s up, this weekend is nice in favor of me, since this moment
    i am reading this fantastic educational piece of writing
    here at my house.

    Reply
  • patelrohan7500 says:
    July 18, 2021 at 4:24 am

    Thanks 😀

    Reply
  • Nellie says:
    July 21, 2021 at 7:36 pm

    Hello There. I found your blog using msn. This is a very well written article.
    I will be sure to bookmark it and come back to read more
    of your useful info. Thanks for the post. I’ll definitely comeback.

    Reply
    • patelrohan7500 says:
      July 23, 2021 at 3:31 pm

      Thanks for Reading

      Reply
  • Norma says:
    July 22, 2021 at 6:06 am

    Today, I went to the beach with my kids. I found a sea shell and gave it to my 4
    year old daughter and said “You can hear the ocean if you put this to your ear.”
    She put the shell to her ear and screamed. There
    was a hermit crab inside and it pinched her ear. She never wants to go back!
    LoL I know this is completely off topic but I had to tell someone!

    Reply
  • patelrohan7500 says:
    July 23, 2021 at 3:32 pm

    yes I make this website

    Reply
  • Octavio says:
    July 25, 2021 at 1:10 am

    I’ve learn several excellent stuff here. Definitely worth bookmarking for revisiting.
    I surprise how so much effort you set to make this
    type of magnificent informative site.

    Reply
    • patelrohan7500 says:
      July 25, 2021 at 5:15 am

      Thanks

      Reply
  • Fermin says:
    August 9, 2021 at 4:48 pm

    I’m really loving the theme/design of your site.

    Do you ever run into any internet browser compatibility problems?
    A handful of my blog audience have complained about my site not working correctly
    in Explorer but looks great in Safari. Do you have any tips to help fix this problem?

    Reply
    • patelrohan7500 says:
      August 10, 2021 at 4:25 am

      this is generates press theme

      Reply
  • Shanice says:
    August 30, 2021 at 7:21 pm

    I couldn’t refrain from commenting. Well written!

    Reply
  • Ava says:
    August 30, 2021 at 8:26 pm

    Attractive part of content. I simply stumbled upon your website and in accession capital to assert that I
    acquire actually loved account your weblog posts. Any way I’ll be subscribing to your
    feeds and even I fulfillment you get right
    of entry to consistently quickly.

    Reply
  • Private Proxy Servers Free says:
    August 31, 2021 at 10:00 pm

    very good put up, i certainly love this web site, keep on it

    Reply
  • Usa Proxy says:
    September 8, 2021 at 11:57 am

    Hiya, I am really glad I’ve found this information. Nowadays bloggers publish only about gossips and web and this is really frustrating. A good web site with exciting content, this is what I need. Thank you for keeping this web-site, I’ll be visiting it. Do you do newsletters? Can’t find it.

    Reply
  • Uta says:
    September 12, 2021 at 6:14 pm

    Hello there, just became aware of your blog through Google, and found that it
    is really informative. I am gonna watch out for brussels.
    I’ll appreciate if you continue this in future. Numerous people will be benefited from your writing.
    Cheers!

    Reply
  • Pingback: 15 JavaScript Basic Concepts You Should Know - rocoderes
  • Halina says:
    September 14, 2021 at 6:29 am

    This is my first time pay a quick visit at here and i am genuinely happy to read everthing at
    single place.

    Reply
  • Georgia says:
    September 23, 2021 at 5:54 pm

    Wow, fantastic blog layout! How long have you been blogging for?
    you make blogging look easy. The overall look
    of your web site is fantastic, let alone the content!

    Reply
  • Willis says:
    September 24, 2021 at 12:25 am

    I was curious if you ever thought of changing
    the page layout of your site? Its very well written; I love
    what youve got to say. But maybe you could a little more in the way of content so people could connect
    with it better. Youve got an awful lot of text for only having 1 or two pictures.

    Maybe you could space it out better?

    Reply
  • Elba says:
    September 26, 2021 at 12:50 am

    I have been browsing online more than 4 hours today, yet I never found
    any interesting article like yours. It is pretty worth enough for me.
    Personally, if all web owners and bloggers made good content
    as you did, the net will be a lot more useful than ever before.

    Reply
  • Pingback: Javascript convert date to long date format - rocoderes
  • Rena says:
    October 12, 2021 at 1:18 am

    Hello! I could have sworn I’ve been to this site before
    but after browsing through some of the post I realized it’s new to me.

    Nonetheless, I’m definitely glad I found it and I’ll be bookmarking and checking back
    often!

    Reply
  • Shanon says:
    October 13, 2021 at 4:32 am

    Way cool! Some very valid points! I appreciate you penning
    this post plus the rest of the website is also really good.

    Reply
  • Geneva says:
    October 13, 2021 at 8:38 pm

    Thanks for one’s marvelous posting! I truly enjoyed reading it, you happen to be a great author.I
    will always bookmark your blog and definitely will come back from now on. I
    want to encourage you continue your great job, have a nice morning!

    Reply
  • Bernardo says:
    October 17, 2021 at 10:46 pm

    Hello there! This blog post could not be written much better!
    Looking through this article reminds me of my previous roommate!
    He constantly kept talking about this. I am going to forward this article to him.
    Fairly certain he’ll have a great read. Many thanks for sharing!

    Reply
  • Lupe says:
    October 18, 2021 at 4:09 pm

    Hey! This post could not be written any better! Reading through this post
    reminds me of my good old room mate! He always kept chatting about this.
    I will forward this article to him. Pretty sure he
    will have a good read. Thanks for sharing!

    Reply
  • Lashawnda says:
    October 18, 2021 at 6:38 pm

    This is a topic that’s near to my heart… Many thanks!
    Exactly where are your contact details though?

    Reply
  • Anh says:
    October 18, 2021 at 10:27 pm

    I was suggested this web site by means of my cousin. I am not certain whether this submit
    is written by means of him as nobody else realize such unique about
    my trouble. You’re wonderful! Thank you!

    Reply
  • Silke says:
    October 24, 2021 at 8:20 pm

    Wow, awesome blog layout! How long have you been blogging for?

    you made blogging look easy. The overall look of your website is wonderful, let alone the content!

    Reply
  • Geneva says:
    November 1, 2021 at 2:22 am

    Every weekend i used to go to see this website, as i want enjoyment,
    for the reason that this this web page conations truly pleasant funny stuff too.

    Reply
  • Your Private Proxies says:
    November 3, 2021 at 11:09 pm

    Precisely what I was looking for, thanks for putting up.

    Reply
  • Ezra says:
    November 5, 2021 at 1:59 am

    Hi mates, its wonderful post on the topic of teachingand fully defined,
    keep it up all the time.

    Reply
  • Jessica says:
    November 7, 2021 at 1:55 am

    Hi great website! Does running a blog such as this take
    a large amount of work? I have very little expertise in programming however I
    was hoping to start my own blog in the near future.
    Anyhow, should you have any suggestions or tips for new blog owners please share.
    I know this is off topic however I just had to ask.
    Kudos!

    Reply
  • Rickie says:
    November 8, 2021 at 11:55 pm

    You actually make it seem so easy with your presentation but I
    find this topic to be really something which I think I would never understand.
    It seems too complex and very broad for me.
    I’m looking forward for your next post, I’ll try to get the
    hang of it!

    Reply
  • Eladia Steketee says:
    November 10, 2021 at 10:34 pm

    Hi there just wanted to give you a quick heads up and let you know a few of the images aren’t loading correctly. I’m not sure why but I think its a linking issue. I’ve tried it in two different internet browsers and both show the same outcome.

    Reply
  • Felton Pignatello says:
    November 13, 2021 at 4:46 pm

    Hi, i read your blog occasionally and i own a similar one and i was just curious if you get a lot of spam responses? If so how do you protect against it, any plugin or anything you can advise? I get so much lately it’s driving me crazy so any help is very much appreciated.

    Reply
    • patelrohan7500 says:
      November 14, 2021 at 5:08 am

      hide the website filled in the comment section. if you don’t know how to do then contact me

      Reply
      • sds says:
        February 8, 2022 at 6:46 am

        Hey, How To host it?

        Reply
        • Admin says:
          February 10, 2022 at 3:23 pm

          Using netlify

          Reply
  • Ronda says:
    November 14, 2021 at 12:35 am

    What’s up, this weekend is pleasant in support of me,
    for the reason that this occasion i am reading this great informative
    post here at my house.

    Reply
  • Dakota says:
    November 15, 2021 at 7:28 am

    When some one searches for his necessary thing, so
    he/she wants to be available that in detail, thus
    that thing is maintained over here.

    Reply
  • Harriett says:
    November 16, 2021 at 4:01 am

    Hi! I could have sworn I’ve visited this website before but after browsing through some of the articles I
    realized it’s new to me. Anyhow, I’m certainly pleased I came across it and I’ll be bookmarking it and checking back regularly!

    Reply
  • Kandice says:
    November 16, 2021 at 8:45 pm

    I needed to thank you for this great read!! I definitely loved every little bit of it.
    I’ve got you book-marked to look at new things you post…

    Reply
  • Stephen says:
    November 16, 2021 at 11:34 pm

    I’m amazed, I must say. Seldom do I come across a blog that’s both educative and
    engaging, and let me tell you, you’ve hit the nail on the head.
    The issue is an issue that too few folks are speaking intelligently about.
    I am very happy that I stumbled across this in my search for something concerning this.

    Reply
  • Rae says:
    November 19, 2021 at 4:17 am

    Hi to all, how is all, I think every one is getting more from this website, and your views are pleasant designed for new users.

    Reply
  • Enriqueta says:
    November 23, 2021 at 9:31 am

    Wow, incredible blog layout! How lengthy have you been blogging for?
    you made blogging look easy. The total look of your site
    is excellent, let alone the content material!

    Reply
  • Jamey says:
    November 23, 2021 at 5:58 pm

    You actually make it appear really easy with your presentation but I to
    find this topic to be really one thing which I believe I might by no means understand.
    It kind of feels too complicated and extremely broad for me.

    I’m taking a look ahead on your next publish, I’ll
    attempt to get the dangle of it!

    Reply
  • Harvey says:
    November 25, 2021 at 4:34 am

    Hurrah! At last I got a blog from where I be capable of
    truly get useful facts concerning my study and knowledge.

    Reply
  • Santo Gnas says:
    November 25, 2021 at 9:44 am

    I absolutely love your blog and find a lot of your post’s to be what precisely I’m looking for. Would you offer guest writers to write content to suit your needs? I wouldn’t mind writing a post or elaborating on a lot of the subjects you write with regards to here. Again, awesome website!

    Reply
  • Bryon says:
    November 27, 2021 at 3:47 am

    Hey! I just wanted to ask if you ever have any trouble with hackers?
    My last blog (wordpress) was hacked and I ended
    up losing many months of hard work due to no back up.
    Do you have any solutions to stop hackers?

    Reply
  • some seo says:
    December 9, 2021 at 3:53 pm

    These are actually fantastic ideas in on the topic of blogging.You have touched some fastidious things here.Any way keep up wrinting.

    Reply
  • Agen338 says:
    December 10, 2021 at 6:01 pm

    I truly appreciate this blog post.Really looking forward to read more. Awesome.

    Reply
  • Wilburn says:
    December 13, 2021 at 10:45 pm

    obviously like your web site but you need to test the spelling on quite a few of your
    posts. Several of them are rife with spelling issues and I
    in finding it very bothersome to inform the truth however I’ll
    certainly come again again.

    Reply
  • Gracie Martey says:
    December 19, 2021 at 6:15 pm

    I’m impressed, I have to admit. Rarely do I come across a blog that’s equally educative and entertaining, and without a doubt, you’ve hit the nail on the head. The problem is something which too few folks are speaking intelligently about. Now i’m very happy that I found this during my hunt for something concerning this.

    Reply
  • Brandon Geeding says:
    December 22, 2021 at 5:48 pm

    Excellent site you have here.. It’s hard to find excellent writing like yours nowadays. I really appreciate individuals like you! Take care!!

    Reply
  • Brice Auzenne says:
    December 25, 2021 at 8:40 pm

    An interesting discussion is worth comment. I believe that you should publish more on this issue, it may not be a taboo matter but usually folks don’t talk about such issues. To the next! All the best!!

    Reply
  • Jamie says:
    December 28, 2021 at 5:52 am

    Hi to every single one, it’s genuinely a nice for me to visit this website,
    it contains helpful Information.

    Reply
  • Benedict Motter says:
    December 29, 2021 at 5:48 pm

    A person necessarily lend a hand to make critically articles I might state. This is the very first time I frequented your website page and up to now? I amazed with the research you made to make this actual publish extraordinary. Wonderful job!

    Reply
  • Darla says:
    January 11, 2022 at 4:04 am

    I love what you guys tend to be up too. Such clever
    work and exposure! Keep up the amazing works
    guys I’ve incorporated you guys to blogroll.

    Reply
  • SEO Services In New York City says:
    February 23, 2022 at 5:54 pm

    We specialize in SEO for helping medium to large businesses in New York City USA and convert high-quality, high-intent traffic into important business leads.

    Reply
  • Barney Saam says:
    February 26, 2022 at 4:07 am

    I’m still learning from you, while I’m trying to reach my goals. I definitely love reading everything that is written on your blog.Keep the information coming. I loved it!

    Reply
  • Usa Proxy says:
    February 28, 2022 at 6:28 am

    Most of whatever you point out is supprisingly legitimate and it makes me wonder why I had not looked at this with this light previously. This particular piece really did turn the light on for me as far as this particular issue goes. Nevertheless there is 1 issue I am not really too comfy with and whilst I attempt to reconcile that with the main theme of your issue, permit me observe exactly what all the rest of your visitors have to point out.Nicely done.

    Reply
  • Cheap Private Proxy says:
    March 1, 2022 at 10:12 pm

    I blog frequently and I seriously appreciate your content. This article has truly peaked my interest. I’m going to book mark your blog and keep checking for new details about once per week. I subscribed to your RSS feed too.

    Reply
  • Buy Elite Proxies says:
    March 2, 2022 at 7:06 am

    Great info. Lucky me I came across your website by accident (stumbleupon). I have book marked it for later!

    Reply
  • Private Proxy Search Engine says:
    March 3, 2022 at 6:41 am

    Hey! I simply wish to give an enormous thumbs up for the nice info you’ve here on this post. I will likely be coming again to your weblog for extra soon.

    Reply
  • gralion torile says:
    March 4, 2022 at 6:22 am

    I loved as much as you’ll receive carried out right here. The sketch is tasteful, your authored material stylish. nonetheless, you command get got an edginess over that you wish be delivering the following. unwell unquestionably come more formerly again since exactly the same nearly a lot often inside case you shield this hike.

    Reply
  • Reliable Proxies says:
    March 5, 2022 at 4:12 am

    Some really nice stuff on this website , I enjoy it.

    Reply
  • SUPERSLOT says:
    March 9, 2022 at 9:36 am

    Really appreciate you sharing this article post.Much thanks again. Will read on…

    Reply
  • Proxies Cheap says:
    March 12, 2022 at 8:52 pm

    I was suggested this website by way of my cousin. I’m now not sure whether this submit is written by way of him as no one else recognize such unique approximately my trouble. You’re wonderful! Thanks!

    Reply
  • Elisabeth Stampe says:
    March 13, 2022 at 4:46 am

    as I website owner I think the subject material here is real good, appreciate it for your efforts.

    Reply
  • Instagram Proxies says:
    March 14, 2022 at 2:26 pm

    Hi there! I know this is kind of off topic but I was wondering if you knew where I could locate a captcha plugin for my comment form? I’m using the same blog platform as yours and I’m having trouble finding one? Thanks a lot!

    Reply
  • Fastest Speed Usa Proxy Servers says:
    March 16, 2022 at 4:25 am

    This website definitely has all of the info I needed about this subject and didn’t know who to ask.

    Reply
  • http://bit.ly/3ilmcDe says:
    March 23, 2022 at 2:34 pm

    Hi to all, the contents present at this site are really awesome for people knowledge,
    well, keep up the nice work fellows.

    Reply
  • http://bit.ly/ says:
    March 24, 2022 at 6:34 am

    First off I want to say superb blog! I had a
    quick question which I’d like to ask if you don’t mind. I was interested to find out how you center yourself and clear your head before writing.

    I have had a hard time clearing my thoughts in getting my thoughts out.
    I do enjoy writing but it just seems like the first 10 to 15 minutes tend to
    be wasted just trying to figure out how to begin. Any
    recommendations or tips? Thanks!

    Reply
  • bit.ly says:
    March 24, 2022 at 2:05 pm

    It’s going to be end of mine day, but before
    end I am reading this wonderful post to increase my know-how.

    Reply
  • product review says:
    March 26, 2022 at 9:03 pm

    Good shot dude

    Reply
  • kbc lottery winner says:
    March 29, 2022 at 6:06 am

    Here is a superb Weblog

    Reply
  • American Private Proxies says:
    March 30, 2022 at 10:19 pm

    In the awesome pattern of things you’ll receive an A with regard to effort and hard work. Where exactly you actually misplaced me was in all the facts. You know, they say, details make or break the argument.. And it couldn’t be much more true here. Having said that, let me inform you what did work. The article (parts of it) is definitely quite engaging and that is possibly why I am taking an effort to comment. I do not make it a regular habit of doing that. Second, despite the fact that I can notice the jumps in reasoning you come up with, I am not necessarily confident of just how you seem to connect the ideas that help to make the conclusion. For right now I shall yield to your point however wish in the foreseeable future you connect the facts much better.

    Reply
  • zoritoler imol says:
    March 31, 2022 at 5:37 am

    I’ve recently started a web site, the information you offer on this web site has helped me greatly. Thank you for all of your time & work.

    Reply
  • CHUWI MiniBook J4125 says:
    April 6, 2022 at 10:43 pm

    I love how your website looks, thanks for the post it was nice read.

    Reply
  • new cheap chuwi minibook says:
    April 7, 2022 at 3:38 pm

    It’s cool not just elegant!

    Reply
  • product says:
    April 7, 2022 at 4:30 pm

    It’s cool not just elegant!

    Reply
  • chuwi minibook j4125 says:
    April 7, 2022 at 10:48 pm

    It’s cool not just elegant!

    Reply
  • chuwi minibook j4125 says:
    April 7, 2022 at 11:08 pm

    My 56 year old brother rates this colour very clean.

    Reply
  • Helen Fava says:
    April 9, 2022 at 2:36 am

    Pretty! This was an extremely wonderful post. Thanks for providing this info.

    Reply
  • hotshot bald cop says:
    April 12, 2022 at 8:17 pm

    I was just telling my friend about that.

    Reply
  • hotshot bald cop says:
    April 13, 2022 at 12:37 am

    Wonderful views on that!

    Reply
  • product review says:
    April 24, 2022 at 10:47 am

    It really is an amazing bit of crafting in support of most of the on the web tourist might receive advantage from this I am sure.

    Reply
  • vaskir says:
    April 26, 2022 at 12:16 am

    Gold. I think clients would love this.

    Reply
  • product review says:
    April 26, 2022 at 10:08 am

    Really love your website design! Have you checked my wordpress website, do you like the theme?

    Reply
  • jobs in uganda today says:
    May 2, 2022 at 6:48 am

    An attention-grabbing discussion is value comment. I believe that it is best to write extra on this subject, it might not be a taboo subject but usually individuals are not sufficient to talk on such topics. To the next. Cheers

    Reply
  • vaskir says:
    May 2, 2022 at 9:40 am

    Mission accomplished. It’s good 🙂

    Reply
  • video product review says:
    May 2, 2022 at 9:42 am

    My 56 year old brother rates this colour very clean.

    Reply
  • Nathanael Uppencamp says:
    May 2, 2022 at 11:55 am

    It’s difficult to find educated people for this subject, however, you seem like you know what you’re talking about! Thanks

    Reply
  • houston junk car buyer says:
    May 3, 2022 at 8:05 pm

    Greetings from Idaho! I’m bored at work so I
    decided to browse your blog on my iphone during lunch break.
    I enjoy the information you present here and can’t wait to take a look when I get home.
    I’m amazed at how quick your blog loaded on my cell phone ..
    I’m not even using WIFI, just 3G .. Anyways, wonderful blog!

    Reply
  • lenovo lp1s wireless low latency gaming headphone says:
    May 5, 2022 at 1:52 pm

    I like your colours!!

    Reply
    • Admin says:
      May 8, 2022 at 7:21 am

      Thanks

      Reply
  • all india sim card lucky draw winner 2022 says:
    May 7, 2022 at 4:29 am

    Hello, all the time i used to check blog posts here in the
    early hours in the break of day, for the reason that i enjoy to find out more and more.

    Reply
  • product review says:
    May 10, 2022 at 11:16 am

    I want to learn this kind of avatar! Teach me.

    Reply
  • product review says:
    May 14, 2022 at 5:44 pm

    Really love your website design! Have you checked my wordpress website, do you like the theme?

    Reply
  • product review says:
    May 14, 2022 at 6:57 pm

    Good shot dude

    Reply
    • Admin says:
      May 28, 2022 at 6:10 am

      yes sure

      Reply
  • vaskir says:
    May 14, 2022 at 7:23 pm

    I want to learn this kind of avatar! Teach me.

    Reply
  • vaskir says:
    May 18, 2022 at 11:00 am

    It really is an amazing bit of crafting in support of most of the on the web tourist might receive advantage from this I am sure.

    Reply
  • Hostings Coupons says:
    May 20, 2022 at 4:07 am

    Hi there! I know this is kinda off topic but I’d figured I’d ask. Would you be interested in trading links or maybe guest authoring a blog post or vice-versa? My website discusses a lot of the same topics as yours and I feel we could greatly benefit from each other. If you are interested feel free to send me an email. I look forward to hearing from you! Terrific blog by the way!

    Reply
  • graliontorile says:
    May 21, 2022 at 1:53 am

    I do agree with all the ideas you’ve presented in your post. They’re very convincing and will certainly work. Still, the posts are very short for novices. Could you please extend them a bit from next time? Thanks for the post.

    Reply
    • Admin says:
      May 21, 2022 at 11:51 am

      sure

      Reply
  • Free Web Hostings Coupons says:
    May 21, 2022 at 1:16 pm

    This really answered my drawback, thanks!

    Reply
  • Pingback: How to Javascript convert date to long date format - rocoderes

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

- Advertisement -

You Might Also Like

How to set the dropdown value by clicking on a table row

Javascript – How to set the dropdown value by clicking on a table row

February 11, 2024
Attempting to increase the counter, when the object's tag exist

Javascript – Attempting to increase the counter, when the object’s tag exist

February 11, 2024
Cycle2 JS center active slide

Javascript – Cycle2 JS center active slide

February 10, 2024
Can import all THREE.js post processing modules as ES6 modules except OutputPass

Javascript – Can import all THREE.js post processing modules as ES6 modules except OutputPass

February 10, 2024
rocoderesrocoderes
Follow US

Copyright © 2022 All Right Reserved By Rocoderes

  • Home
  • About us
  • Contact us
  • Disclaimer
Join Us!

Subscribe to our newsletter and never miss our latest news, podcasts etc.

Zero spam, Unsubscribe at any time.
Welcome Back!

Sign in to your account

Lost your password?