<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Howbeginners</title>
    <description>The latest articles on DEV Community by Howbeginners (@wwwhowbeginnerscom).</description>
    <link>https://dev.to/wwwhowbeginnerscom</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F824803%2F9baf70b2-91e9-472c-9b0f-0a9e1058ac98.png</url>
      <title>DEV Community: Howbeginners</title>
      <link>https://dev.to/wwwhowbeginnerscom</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/wwwhowbeginnerscom"/>
    <language>en</language>
    <item>
      <title>Share some simple logo create With SVG</title>
      <dc:creator>Howbeginners</dc:creator>
      <pubDate>Sat, 23 Apr 2022 16:52:18 +0000</pubDate>
      <link>https://dev.to/wwwhowbeginnerscom/share-some-simple-logo-create-with-svg-27ll</link>
      <guid>https://dev.to/wwwhowbeginnerscom/share-some-simple-logo-create-with-svg-27ll</guid>
      <description>&lt;p&gt;Today I'd like to share some simple logo create in SVG. With just a few lines of code, you can create stunning logos that are both easy to customize and super portable. So whether you're starting from scratch or just looking to update your current logo, SVG is the perfect format for you!&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;svg viewbox="0 0 80 60" xmlns="http://www.w3.org/2000/svg" width="80" height="60"&amp;gt;
  &amp;lt;style&amp;gt;
    text { font-weight: bold;
    font-size:20px;
    }
  &amp;lt;/style&amp;gt;
    &amp;lt;rect fill="rgb(0,0,0)" height="90%" rx="4" width="90%" x="5%" y="5%"&amp;gt; &amp;lt;/rect&amp;gt;               
    &amp;lt;text dominant-baseline="middle" fill="rgb(255,255,255)" text-anchor="middle" x="50%" y="50%"&amp;gt;EXP&amp;lt;/text&amp;gt;     
&amp;lt;/svg&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Demo:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--sAcx54Ar--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l12305i3ict6ff2yq57z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--sAcx54Ar--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l12305i3ict6ff2yq57z.png" alt="svg text" width="880" height="692"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Base64 URI:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;data:image/svg+xml;base64,PHN2ZyB2aWV3Ym94PSIwIDAgODAgNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjgwIiBoZWlnaHQ9IjYwIj4KICA8c3R5bGU+CiAgICB0ZXh0IHsgZm9udC13ZWlnaHQ6IGJvbGQ7CiAgICBmb250LXNpemU6MjBweDsKICAgIH0KICA8L3N0eWxlPgogICAgPHJlY3QgZmlsbD0icmdiKDAsMCwwKSIgaGVpZ2h0PSI5MCUiIHJ4PSI0IiB3aWR0aD0iOTAlIiB4PSI1JSIgeT0iNSUiPiA8L3JlY3Q+ICAgICAgICAgICAgICAgCiAgICA8dGV4dCBkb21pbmFudC1iYXNlbGluZT0ibWlkZGxlIiBmaWxsPSJyZ2IoMjU1LDI1NSwyNTUpIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiB4PSI1MCUiIHk9IjUwJSI+RVhQPC90ZXh0PiAgICAgCjwvc3ZnPg==
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Option 2:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;svg viewbox="0 0 140 60" xmlns="http://www.w3.org/2000/svg" width="140" height="60"&amp;gt;
  &amp;lt;style&amp;gt;
    text { font-weight: bold;
    font-size:20px;
    }
  &amp;lt;/style&amp;gt;
    &amp;lt;rect fill="rgb(0,0,0)" height="90%" rx="4" width="90%" x="5%" y="5%"&amp;gt; &amp;lt;/rect&amp;gt;               
    &amp;lt;text dominant-baseline="middle" fill="rgb(255,255,255)" text-anchor="middle" x="50%" y="50%"&amp;gt;EXAMPLE&amp;lt;/text&amp;gt;     
&amp;lt;/svg&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Demo:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--paVtTuGo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/d4ntvh9cwre0oh894nlu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--paVtTuGo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/d4ntvh9cwre0oh894nlu.png" alt="example svg logo" width="880" height="398"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Base64 URI:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;data:image/svg+xml;base64,PHN2ZyB2aWV3Ym94PSIwIDAgMTQwIDYwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDAiIGhlaWdodD0iNjAiPgogIDxzdHlsZT4KICAgIHRleHQgeyBmb250LXdlaWdodDogYm9sZDsKICAgIGZvbnQtc2l6ZToyMHB4OwogICAgfQogIDwvc3R5bGU+CiAgICA8cmVjdCBmaWxsPSJyZ2IoMCwwLDApIiBoZWlnaHQ9IjkwJSIgcng9IjQiIHdpZHRoPSI5MCUiIHg9IjUlIiB5PSI1JSI+IDwvcmVjdD4gICAgICAgICAgICAgICAKICAgIDx0ZXh0IGRvbWluYW50LWJhc2VsaW5lPSJtaWRkbGUiIGZpbGw9InJnYigyNTUsMjU1LDI1NSkiIHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjUwJSIgeT0iNTAlIj5FWEFNUExFPC90ZXh0PiAgICAgCjwvc3ZnPg==
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Option 3:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;svg viewbox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" width="512" height="512"&amp;gt;
  &amp;lt;style&amp;gt;
    text { font-weight: bold;
    font-size:160px;
    }
  &amp;lt;/style&amp;gt;
    &amp;lt;rect fill="rgb(0,0,0)" height="90%" rx="4" width="90%" x="5%" y="5%"&amp;gt; &amp;lt;/rect&amp;gt;               
    &amp;lt;text dominant-baseline="middle" fill="rgb(255,255,255)" text-anchor="middle" x="50%" y="50%"&amp;gt;EXP&amp;lt;/text&amp;gt;     
&amp;lt;/svg&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Demo:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_JVVo00u--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/91jjhw77gcpcqeo9as86.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_JVVo00u--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/91jjhw77gcpcqeo9as86.png" alt="Image description" width="880" height="885"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Base64 URI:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;data:image/svg+xml;base64,PHN2ZyB2aWV3Ym94PSIwIDAgNTEyIDUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiI+CiAgPHN0eWxlPgogICAgdGV4dCB7IGZvbnQtd2VpZ2h0OiBib2xkOwogICAgZm9udC1zaXplOjE2MHB4OwogICAgfQogIDwvc3R5bGU+CiAgICA8cmVjdCBmaWxsPSJyZ2IoMCwwLDApIiBoZWlnaHQ9IjkwJSIgcng9IjQiIHdpZHRoPSI5MCUiIHg9IjUlIiB5PSI1JSI+IDwvcmVjdD4gICAgICAgICAgICAgICAKICAgIDx0ZXh0IGRvbWluYW50LWJhc2VsaW5lPSJtaWRkbGUiIGZpbGw9InJnYigyNTUsMjU1LDI1NSkiIHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjUwJSIgeT0iNTAlIj5FWFA8L3RleHQ+ICAgICAKPC9zdmc+
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That is what I want to share with you for today!&lt;/p&gt;

&lt;p&gt;Thanks for reading!&lt;/p&gt;

&lt;p&gt;Visit my website to get more resources:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.howbeginners.com/"&gt;www.howbeginners.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>vector</category>
      <category>svg</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Do You Know These Resources to Save Links, Images, Note-Taking</title>
      <dc:creator>Howbeginners</dc:creator>
      <pubDate>Sun, 03 Apr 2022 11:25:31 +0000</pubDate>
      <link>https://dev.to/wwwhowbeginnerscom/do-you-know-these-resources-to-save-links-images-note-taking-4j9c</link>
      <guid>https://dev.to/wwwhowbeginnerscom/do-you-know-these-resources-to-save-links-images-note-taking-4j9c</guid>
      <description>&lt;p&gt;Saving links and images is a breeze with these three resources. With just a few clicks, customers can save the content they need for later use. &lt;/p&gt;

&lt;p&gt;The first resource, &lt;a href="https://evernote.com/intl/en/"&gt;&lt;strong&gt;Evernote&lt;/strong&gt;&lt;/a&gt;, is a note-taking app that can be used on computers and mobile devices. Customers can save a link by clicking the Evernote button in their browser bar, or by dragging the link into an Evernote notebook. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Do53P9Cd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/e789gol8z2287pe5n1m6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Do53P9Cd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/e789gol8z2287pe5n1m6.png" alt="Image description" width="880" height="627"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The second resource, &lt;strong&gt;&lt;a href="https://www.pinterest.com/"&gt;Pinterest&lt;/a&gt;&lt;/strong&gt;, is a social media platform that lets customers save images and links to boards. Customers can save a link by clicking the “Pin it” button on the website, or by dragging the image into a Pinterest board. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--AWBWBEYb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/smq9ewoxobqloohnwr1o.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--AWBWBEYb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/smq9ewoxobqloohnwr1o.jpeg" alt="Image description" width="880" height="440"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The third resource, &lt;strong&gt;&lt;a href="https://getpocket.com/en/"&gt;Pocket&lt;/a&gt;&lt;/strong&gt;, is an app that lets customers save articles, videos, and images for offline viewing.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RH04h-ph--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zb5skiffwzt6sz6n1fxu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RH04h-ph--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zb5skiffwzt6sz6n1fxu.png" alt="Image description" width="880" height="462"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Another resource, &lt;a href="https://www.notion.so/"&gt;Notion&lt;/a&gt;,  is an app that helps you stay organized and productive. It has a to-do list, a calendar, a place to take notes, and a task manager. The to-do list and the calendar are integrated, so you can see your tasks and appointments in one place. The notes feature is also integrated with the to-do list and the calendar, so you can add tasks or appointments from your notes. The task manager lets you break down your tasks into smaller steps so you can finish them more easily. The app also has a widget for the home screen so you can see your upcoming tasks and appointments at a glance.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hcTKIe0s--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6m7jeg6koidbi0ea8wn1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hcTKIe0s--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6m7jeg6koidbi0ea8wn1.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://simplenote.com/"&gt;Simplenote&lt;/a&gt;&lt;/strong&gt; is a note-taking app that is simple, fast, and easy to use. It has a clean and streamlined design that makes taking notes and organizing them a breeze. With Simplenote, you can create notes, lists, and memos and access them from any device. The app syncs automatically so you can always have your notes with you. Plus, there are no ads or in-app purchases to distract you from your work. Simplenote is the perfect tool for busy people who need to stay organized.&lt;/p&gt;

&lt;p&gt;If you like markdown inside the note-taking application Simplenote is a great one for you. &lt;a href="https://www.howbeginners.com/2022/03/make-notes-like-pro-with-simplenote.html"&gt;Read more here and demo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dHlBTuCE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wuxzc8bmmhzhjd91968k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dHlBTuCE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wuxzc8bmmhzhjd91968k.png" alt="Image description" width="880" height="429"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://linktr.ee/"&gt;Linktree&lt;/a&gt;&lt;/strong&gt; is a simple, yet effective way to link all of your social media platforms in one place. The best part is that it's free! You can create a linktree account and have a custom URL that links to all of your social media sites. This is a great way to keep your followers updated on all of your latest news and posts. You can also include a CTA (call-to-action) button on your linktree page, which can direct your followers to your website or blog.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--SkNdC9LU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/frtoqlp5zr0e4brq07aj.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SkNdC9LU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/frtoqlp5zr0e4brq07aj.jpeg" alt="Image description" width="880" height="1067"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.are.na/"&gt;Are.na&lt;/a&gt;&lt;/strong&gt; is online software that helps you save and organize the content that is important to you. It has a variety of features that make it unique and advantageous for users. For example, Are.na allows you to save articles, images, and videos all in one place so you can easily find them when you need them. Additionally, its search function makes it easy to locate specific information amidst your saved content. Are.na's collaborative features also set it apart from other online software options; you can easily create groups with friends or colleagues to share and work on the content together. Finally, Are.na is free to use!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ubO7GBvu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xwd5eblrx6st2w6yvffl.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ubO7GBvu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xwd5eblrx6st2w6yvffl.jpeg" alt="Image description" width="640" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://savee.it/"&gt;Savee.it&lt;/a&gt;&lt;/strong&gt; is a creative platform that allows users to browse and save curated inspiration from around the world. The platform has a large collection of designs from different designers, and users can save their favorite designs for future reference. Additionally, Savee.it offers users the ability to discover new and trending designs, as well as connect with other designers. This allows for creative collaboration and the sharing of ideas. Overall, Savee.it is a great resource for designers and anyone who enjoys browsing creative content.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Z9IG6R59--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n0uqxef1w1af2zwwww1u.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Z9IG6R59--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n0uqxef1w1af2zwwww1u.jpeg" alt="Image description" width="880" height="462"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.zoho.com/notebook/"&gt;Zoho Notebook&lt;/a&gt;&lt;/strong&gt; is a cross-platform note-taking app that is simple, fast, and easy to use. It has a clean and clutter-free interface that makes taking notes a breeze. With Zoho Notebook, you can take notes on your computer, phone, or tablet and have them all sync up so you can access them from anywhere. You can also share your notes with others and collaborate on projects together. Plus, Zoho Notebook is free to use!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--P9tppjuX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jitcxvb5rlifoqxiaxj8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P9tppjuX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jitcxvb5rlifoqxiaxj8.png" alt="Image description" width="880" height="522"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading!&lt;/p&gt;

&lt;p&gt;Follow me on my website to read more interesting content: &lt;a href="https://www.howbeginners.com/"&gt;Visit Here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Please mention any additional alternative website/app for this posting in the comments section. Thanks!&lt;/p&gt;

</description>
      <category>resources</category>
      <category>note</category>
      <category>wwwhowbeginnerscom</category>
      <category>bookmarks</category>
    </item>
    <item>
      <title>How To Embed Twitter Tweet Into Dev.to Post</title>
      <dc:creator>Howbeginners</dc:creator>
      <pubDate>Mon, 28 Mar 2022 08:02:36 +0000</pubDate>
      <link>https://dev.to/wwwhowbeginnerscom/how-to-embed-twitter-tweet-into-devto-post-2kjg</link>
      <guid>https://dev.to/wwwhowbeginnerscom/how-to-embed-twitter-tweet-into-devto-post-2kjg</guid>
      <description>&lt;p&gt;This is a great beginner's guide to embedding a Twitter tweet into your Dev.to posts! &lt;/p&gt;

&lt;p&gt;If you're looking to embed a tweet into your Dev.to post, this is the guide for you!&lt;/p&gt;

&lt;p&gt;Are you a beginner in DEV.TO? Do you want to embed Twitter Tweet Into DEV.TO Post?&lt;/p&gt;

&lt;p&gt;I'm a dev.to user but I don't know how to Embed Twitter Tweet Into DEV.TO Post, so I googled it and found a tutorial which is really helpful for me and now I can embed twitter tweet into dev.to post easily.&lt;/p&gt;

&lt;p&gt;If you are a beginner in DEV.TO, then you should read this tutorial carefully and follow the simple steps below to learn how to embed Twitter Tweet Into DEV.TO Post easily with just one click!&lt;/p&gt;

&lt;h2&gt;
  
  
  How To Embed a Tweet into Dev.to post
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Click on share tweet button at bottom of the tweet to get the link of the tweet that you want to embed into dev.to post.&lt;/li&gt;
&lt;li&gt;Get the tweet ID&lt;/li&gt;
&lt;li&gt;Paste it into between code like this:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
{% twitter ID %}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I Will mark an example for you. I have a link of my tweet like this: &lt;/p&gt;

&lt;p&gt;&lt;code&gt;https://twitter.com/wwwhowbeginner/status/1497533289930063877&lt;/code&gt; so my tweet ID will be 1497533289930063877 and I will have a code embed exactly like this&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{% twitter 1497533289930063877 %} 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here is how it will look like&lt;/p&gt;

&lt;p&gt;Render:&lt;br&gt;
&lt;iframe class="tweet-embed" id="tweet-1497533289930063877-239" src="https://platform.twitter.com/embed/Tweet.html?id=1497533289930063877"&gt;
&lt;/iframe&gt;

  // Detect dark theme
  var iframe = document.getElementById('tweet-1497533289930063877-239');
  if (document.body.className.includes('dark-theme')) {
    iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1497533289930063877&amp;amp;theme=dark"
  }



&lt;/p&gt;

&lt;p&gt;Thank you for taking the time to read my post. I hope you enjoyed it. That’s all I wanted to share with you. Have a great day!&lt;/p&gt;

&lt;p&gt;Follow me to read more interesting contents. Thanks.&lt;br&gt;
Here is my blog, &lt;a href="https://www.howbeginners.com/" rel="noopener noreferrer"&gt;read more&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>embed</category>
      <category>wwwhowbeginnerscom</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How To Embed Medium into Dev.to Post</title>
      <dc:creator>Howbeginners</dc:creator>
      <pubDate>Sun, 27 Mar 2022 18:54:20 +0000</pubDate>
      <link>https://dev.to/wwwhowbeginnerscom/how-to-embed-medium-into-devto-post-1el1</link>
      <guid>https://dev.to/wwwhowbeginnerscom/how-to-embed-medium-into-devto-post-1el1</guid>
      <description>&lt;p&gt;I'm a beginner and I don't know how to Embed Medium into Dev.to Post. After checking out the guide here: &lt;a href="https://dev.to/p/editor_guide"&gt;https://dev.to/p/editor_guide&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I have found the way.&lt;/p&gt;

&lt;p&gt;So, I decided to make this post to help other beginners like me.&lt;/p&gt;

&lt;h2&gt;
  
  
  How To Embed Medium into Dev.to Post
&lt;/h2&gt;

&lt;p&gt;Medium is a popular online platform that helps users write articles, blog posts, and more. Embedding Medium into your Dev.to post is a great way to add additional content and provide readers with more information. &lt;br&gt;
Below will a guide on how to do that.&lt;br&gt;
This process is just simple to complete by putting the Medium link inside the content like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{% embed https://... %}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Here is the example of code&lt;br&gt;
&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
{% embed https://wwwhowbeginnerscom.medium.com/how-joining-a-blogging-community-can-help-boost-your-traffic-76afdcff4cbd %}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Render:&lt;br&gt;
&lt;/p&gt;
&lt;div class="ltag__link"&gt;
  &lt;a href="https://wwwhowbeginnerscom.medium.com/how-joining-a-blogging-community-can-help-boost-your-traffic-76afdcff4cbd" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nhe0ywT3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/fit/c/96/96/0%2AhvrX5y10_VvEAjgu" alt="Wwwhowbeginnerscom"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://wwwhowbeginnerscom.medium.com/how-joining-a-blogging-community-can-help-boost-your-traffic-76afdcff4cbd" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;How Joining a Blogging Community Can Help Boost Your Traffic | by Wwwhowbeginnerscom | Mar, 2022 | Medium&lt;/h2&gt;
      &lt;h3&gt;Wwwhowbeginnerscom ・ &lt;time&gt;Mar 27, 2022&lt;/time&gt; ・ 
      &lt;div class="ltag__link__servicename"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hnDHPsJs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/medium-f709f79cf29704f9f4c2a83f950b2964e95007a3e311b77f686915c71574fef2.svg" alt="Medium Logo"&gt;
        wwwhowbeginnerscom.Medium
      &lt;/div&gt;
    &lt;/h3&gt;
&lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;



&lt;p&gt;Thank you for reading this content. It means a lot to me that you took the time to read it. I hope you found it helpful. If not, please let me know so that I can improve my writing. Thanks again for taking the time to read this post!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>wwwhowbeginnerscom</category>
      <category>markdown</category>
    </item>
    <item>
      <title>How To Bold Text The Easy Way With HTML Tag / Markdown</title>
      <dc:creator>Howbeginners</dc:creator>
      <pubDate>Sat, 26 Mar 2022 16:40:29 +0000</pubDate>
      <link>https://dev.to/wwwhowbeginnerscom/how-to-bold-text-the-easy-way-with-html-tag-markdown-4j54</link>
      <guid>https://dev.to/wwwhowbeginnerscom/how-to-bold-text-the-easy-way-with-html-tag-markdown-4j54</guid>
      <description>&lt;p&gt;If you are new to HTML and want to bold text, this is the guide for you. In this article, I will teach you how to bold text with an HTML tag and in markdown with my guide. This method is easy to follow and can be used by anyone who begins learning HTML at the first place.&lt;/p&gt;

&lt;h2&gt;
  
  
  Bold text with &lt;strong&gt;&lt;u&gt;strong&lt;/u&gt;&lt;/strong&gt; html tag
&lt;/h2&gt;

&lt;p&gt;There are a couple of ways to bold text in HTML. The easiest way is to use the &lt;strong&gt; tag. Here's how it works: &lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create a new paragraph and type &lt;strong&gt;.&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Inside the &lt;strong&gt; tag, insert your desired bold text. &lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Save your document and you're done!&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Here is an example of code with &amp;lt;strong&amp;gt; bold text &amp;lt;/strong&amp;gt; tag:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;strong&amp;gt;This is a Bold Text&amp;lt;/strong&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Bold text with &lt;strong&gt;&lt;u&gt;b&lt;/u&gt;&lt;/strong&gt; html tag
&lt;/h2&gt;

&lt;p&gt;Bold text can be easily achieved with a simple html tag. The b tag tells the browser to bold the text that follows it. Here are a few examples:&lt;br&gt;
&amp;lt;b&amp;gt;&lt;strong&gt;Hello World!&lt;/strong&gt; &amp;lt;/b&amp;gt; &lt;br&gt;
&amp;lt;b&amp;gt;&lt;strong&gt;This is bold text.&lt;/strong&gt; &amp;lt;/b&amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;b&amp;gt;This is a new bold text.&amp;lt;/b&amp;gt; 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Bold Text in markdown
&lt;/h2&gt;

&lt;p&gt;Using bold text in markdown can make your writing stand out and be more easily read. Below are three guidelines for using bold text in markdown: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use bold for important words or phrases that you want to make particularly noticeable. &lt;/li&gt;
&lt;li&gt;Use bold when you want to introduce a new concept or to emphasize a point. &lt;/li&gt;
&lt;li&gt;Use bold sparingly, as it can be disruptive and hard to read.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When you want to bold text in a markdown document, you can use the ** character both side of the text. This will make the text bold.&lt;/p&gt;

&lt;p&gt;Here is an example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**This a a bold text**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Bold Text With CSS
&lt;/h2&gt;

&lt;p&gt;If you want to give your text a bold appearance, you can use the font-weight:bold css property. This will make the text heavier and more noticeable. There are a few ways to do this, but we'll focus on one specific method: inline code.&lt;/p&gt;

&lt;p&gt;To bold text in an inline code block, simply add the font-weight:bold css property to the appropriate element. For example, if you want to bold all of the text within a &amp;lt;p&amp;gt; tag, you would use the following code:&lt;/p&gt;

&lt;p&gt;&amp;lt;p style="font-weight:bold"&amp;gt;Bold Text&amp;lt;/p&amp;gt;.&lt;/p&gt;

&lt;p&gt;Here is the code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;p style='font-weight: bold'&amp;gt;This is a Bold Text&amp;lt;/p&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That’s all what I want to share. Thanks for reading.&lt;/p&gt;

&lt;p&gt;Follow my blog here: &lt;a href="https://www.howbeginners.com/"&gt;www.howbeginners.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>wwwhowbeginnerscom</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Learn A Simple Html Trick To Refresh Redirects Instantly To Another Page</title>
      <dc:creator>Howbeginners</dc:creator>
      <pubDate>Sat, 19 Mar 2022 10:14:42 +0000</pubDate>
      <link>https://dev.to/wwwhowbeginnerscom/learn-a-simple-html-trick-to-refresh-redirects-instantly-to-another-page-41hj</link>
      <guid>https://dev.to/wwwhowbeginnerscom/learn-a-simple-html-trick-to-refresh-redirects-instantly-to-another-page-41hj</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tXGlWCYu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9v7l2em61bzss6lit2vz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tXGlWCYu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9v7l2em61bzss6lit2vz.png" alt="Image description" width="880" height="456"&gt;&lt;/a&gt;&lt;br&gt;
When you set up a redirect from one page to another, you usually want the redirect to happen instantly. However, if you've ever tried to set up a redirect through HTML, you may have found that it doesn't always work as smoothly as you'd like. There's actually a really simple fix for this - all you need is the meta refresh tag.&lt;/p&gt;

&lt;p&gt;The meta refresh tag is a little piece of code that tells your web browser to reload a page after a certain amount of time. All you need to do is add the following line of code to the header of your redirected page:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;meta http-equiv="refresh" content="5;URL=https://example.com"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will tell your browser to reload the page every 5 seconds, and automatically redirects to the new page after 5 seconds.&lt;/p&gt;

&lt;p&gt;And &lt;code&gt;https://example.com/&lt;/code&gt; the url destination where you want the page to redirect to, replace this url with your link.&lt;/p&gt;

&lt;p&gt;If you want an instantly redirect without waiting for time, you can use this code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;meta http-equiv="refresh" content="0; url=https://example.com/newlocation" /&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Where "0" is the number of seconds before the redirect happens and "URL" is the location of the new page. Be sure to include the https:// before the URL or else it will not work.&lt;/p&gt;

&lt;h3&gt;
  
  
  Where To Put The Html Meta refresh tag?
&lt;/h3&gt;

&lt;p&gt;In order to add the refresh directive, you will need to add the following code between the head tags of your website:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;meta http-equiv="refresh" content="5;url=https://www.example.com"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This code will refresh the redirects on your website every 5 seconds and send visitors to &lt;code&gt;https://www.example.com&lt;/code&gt;. You can replace this URL with any other page on your website.&lt;/p&gt;

&lt;p&gt;Something will look like this one:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!doctype html&amp;gt;
&amp;lt;html&amp;gt;
  &amp;lt;head&amp;gt;
  &amp;lt;meta http-equiv="refresh" content="5; url=https://example.com/newlocation" /&amp;gt;
  &amp;lt;title&amp;gt;Example title&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;!—- something here—&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Please back up your website where you want to apply new code before making any change.&lt;/p&gt;

&lt;p&gt;That is all what I want to to share with you today.&lt;/p&gt;

&lt;p&gt;Thanks For reading!&lt;/p&gt;

&lt;p&gt;Follow me to read more interesting contents:&lt;/p&gt;

&lt;p&gt;My website: &lt;a href="https://www.howbeginners.com/"&gt;www.howbeginners.com&lt;/a&gt;&lt;br&gt;
Twitter: &lt;a href="https://twitter.com/wwwhowbeginner"&gt;@wwhowbeginner&lt;/a&gt;&lt;br&gt;
Medium: &lt;a href="https://wwwhowbeginnerscom.medium.com/"&gt;wwwhowbeginnerscom&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>html</category>
      <category>metatag</category>
      <category>howbeginnerscom</category>
    </item>
  </channel>
</rss>
