<?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: Rodhi Faisal Mufid</title>
    <description>The latest articles on DEV Community by Rodhi Faisal Mufid (@themufid).</description>
    <link>https://dev.to/themufid</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%2F970867%2F1994f82e-53b9-480b-8d86-6cf1f57fbd79.jpeg</url>
      <title>DEV Community: Rodhi Faisal Mufid</title>
      <link>https://dev.to/themufid</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/themufid"/>
    <language>en</language>
    <item>
      <title>Steps to Learn HTML</title>
      <dc:creator>Rodhi Faisal Mufid</dc:creator>
      <pubDate>Sat, 12 Nov 2022 11:44:07 +0000</pubDate>
      <link>https://dev.to/themufid/steps-to-learn-html-406f</link>
      <guid>https://dev.to/themufid/steps-to-learn-html-406f</guid>
      <description>&lt;p&gt;&lt;strong&gt;1. Getting to Know Tags, Elements, and Attributes&lt;/strong&gt;&lt;br&gt;
Get acquainted with tags, elements, and attributes.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tag, used as a prefix to instructions or commands that will be read by the web browser. For example:  tag. This tag will prompt the browser to display the text in bold;&lt;/li&gt;
&lt;li&gt;Element, is the entire code consisting of an opening tag (&amp;lt;&amp;gt;) to a closing tag (&amp;lt;/ &amp;gt;). For example: &amp;lt;'h1&amp;gt;Examples of Elements. However, not all HTML tags have a closing pair;&lt;/li&gt;
&lt;li&gt;Attributes, namely additional information or commands that are in the element. For example: &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--uoS91yrI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/%E2%80%9Dbeach.jpg%E2%80%9D" alt="”Baron" width="" height=""&gt; This element uses the &lt;img&gt; tag with the image source attribute (src) and alt text (alt).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;2. Understand the basic structure of HTML&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&amp;lt;!DOCTYPE html&amp;gt; is used to declare to the computer that you will write commands in HTML code;&lt;/li&gt;
&lt;li&gt; is a tag that indicates that you start and end the document in HTML code;&lt;/li&gt;
&lt;li&gt; filled with metadata from HTML document. Such as tab title, description, and others;&lt;/li&gt;
&lt;li&gt; filled with website page content.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;3. Setting up the HTML Editor&lt;/strong&gt;&lt;br&gt;
The HTML editor is a worksheet for creating and editing HTML documents.&lt;br&gt;
There are various HTML editors that you can use for free. Such as Notepad++, Atom, Bracket, and many more. But before choosing an HTML editor, make sure your computer's OS is compatible.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Opening a Web Browser&lt;/strong&gt;&lt;br&gt;
After creating an HTML document, you'll want to see the results, right? Therefore, make sure you already have a web browser. A web browser is an application for accessing and displaying web pages.&lt;/p&gt;

&lt;p&gt;By a web browser, the computer language that you have created in the HTML editor will be translated into a view that humans can understand.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Creating the First Website Page&lt;/strong&gt;&lt;br&gt;
Now, you can create and view HTML syntax execution in your browser. Unfortunately, your HTML page is not yet publicly accessible. The reason, HTML files are still stored in your computer directory only.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Completing Website Pages&lt;/strong&gt;&lt;br&gt;
So that your basic HTML learning knowledge is getting to the top, try making additional components on web pages. Add complementary spices to make your website pages more delicious and informative.&lt;/p&gt;

&lt;p&gt;You can insert images, tables, forms, or other complementary components. Guaranteed, the website pages that you present will be easier to understand, attract more fans, and bring benefits that you didn't expect.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Setting Website Page Templates with HTML&lt;/strong&gt;&lt;br&gt;
Even though you can create complete web pages, this journey of learning basic HTML is not over. Because, you also need to set the website page template so that the project looks cooler.&lt;/p&gt;

&lt;p&gt;To set a website page template, you can create your own HTML theme or use a ready-made HTML template. Both of these methods will both beautify the layout of your website pages.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;8. Modifying HTML Color Code&lt;/strong&gt;&lt;br&gt;
Knowing HTML color codes is important, especially when learning HTML for beginners. That way, you can modify the color of text, borders, and other media in HTML documents.&lt;/p&gt;

&lt;p&gt;Finally, never get bored to learn, okay!&lt;br&gt;
Here I just want to share, and channel my hobby, namely writing.&lt;/p&gt;

&lt;p&gt;Thank you. 👨🏻‍💻&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Learn HTML for Beginners !</title>
      <dc:creator>Rodhi Faisal Mufid</dc:creator>
      <pubDate>Fri, 11 Nov 2022 18:20:12 +0000</pubDate>
      <link>https://dev.to/themufid/learn-html-for-beginners--4ma3</link>
      <guid>https://dev.to/themufid/learn-html-for-beginners--4ma3</guid>
      <description>&lt;p&gt;&lt;strong&gt;Hi there&lt;/strong&gt; 👋&lt;br&gt;
My name is Mufid, today almost anyone can create and develop a website (web development) without understanding coding. In fact, it's also important to learn basic HTML in order to understand the foundations that make up a website.&lt;/p&gt;

&lt;p&gt;That's why, you need to learn HTML. So, your abilities are not limited by the features and templates that are already available. So, you can create functionality that neighboring websites don't have. Interesting right?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is HTML?&lt;/strong&gt;&lt;br&gt;
HTML (Hypertext Markup Language) is a combination of two terms: &lt;em&gt;hypertext&lt;/em&gt; and &lt;em&gt;markup language&lt;/em&gt;. What the hell is that?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4ywi21fnivlk2aetxwem.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4ywi21fnivlk2aetxwem.png" alt="Image description" width="350" height="350"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hypertext is a document containing links that allow users to link to other pages. While markup language is a computer language that consists of a set of codes to organize the structure and present information.&lt;/p&gt;

&lt;p&gt;So, HTML is a markup language for creating website page structures.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tools for Learning HTML&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Text Editor for Writing Basic HTML&lt;br&gt;
The place to write HTML language is in the text editor. There are many text editors that you can use to learn HTML. Starting as simple as Notepad++, to Visual Studio Code.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Web Browser to View HTML Results&lt;br&gt;
A web browser is a software for viewing the results of your HTML learning. It's not complicated, you can use a browser that is already on your laptop or computer. For example, Google Chrome, and Firefox.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Oops, wait a moment, the material is not finished, wait for tomorrow&lt;br&gt;
I will upload every 2 times a week, namely Saturday and Sunday.&lt;/p&gt;

&lt;p&gt;Thank you &lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
