<?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: satschnt</title>
    <description>The latest articles on DEV Community by satschnt (@satschnt).</description>
    <link>https://dev.to/satschnt</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%2F1068878%2F4532dc91-36f5-48f6-afe5-3c2b7518c2ba.jpg</url>
      <title>DEV Community: satschnt</title>
      <link>https://dev.to/satschnt</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/satschnt"/>
    <language>en</language>
    <item>
      <title>An HTML roadmap that will help you achieve your HTML goals</title>
      <dc:creator>satschnt</dc:creator>
      <pubDate>Mon, 31 Jul 2023 11:02:08 +0000</pubDate>
      <link>https://dev.to/satschnt/an-html-roadmap-that-will-help-you-achieve-your-html-goals-18h0</link>
      <guid>https://dev.to/satschnt/an-html-roadmap-that-will-help-you-achieve-your-html-goals-18h0</guid>
      <description>&lt;p&gt;Do you want to learn HTML but don’t know where to start? Check out this roadmap that will give you a little guide on how to start learning HTML and achieve your coding goals. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Basics&lt;/strong&gt; &lt;br&gt;
Research on following questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What editors can I use?&lt;/li&gt;
&lt;li&gt;What's the anatomy of an HTML file?&lt;/li&gt;
&lt;li&gt;What are HTML elements?&lt;/li&gt;
&lt;li&gt;What are HTML attributes?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;HTML main level tags&lt;/strong&gt;&lt;br&gt;
Definitions and usages of following tags:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;doctype&lt;/li&gt;
&lt;li&gt;head&lt;/li&gt;
&lt;li&gt;title&lt;/li&gt;
&lt;li&gt;meta&lt;/li&gt;
&lt;li&gt;link&lt;/li&gt;
&lt;li&gt;script&lt;/li&gt;
&lt;li&gt;body&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Commonly used tags&lt;/strong&gt;&lt;br&gt;
Definitions and usages of following tags:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;headings&lt;/li&gt;
&lt;li&gt;paragraphs&lt;/li&gt;
&lt;li&gt;text formatting&lt;/li&gt;
&lt;li&gt;lists&lt;/li&gt;
&lt;li&gt;tables&lt;/li&gt;
&lt;li&gt;forms&lt;/li&gt;
&lt;li&gt;images&lt;/li&gt;
&lt;li&gt;iframes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;HTML semantic elements&lt;/strong&gt;&lt;br&gt;
Definitions and usages of following tags:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;article&lt;/li&gt;
&lt;li&gt;aside&lt;/li&gt;
&lt;li&gt;details&lt;/li&gt;
&lt;li&gt;figcaption&lt;/li&gt;
&lt;li&gt;figure&lt;/li&gt;
&lt;li&gt;footer&lt;/li&gt;
&lt;li&gt;header&lt;/li&gt;
&lt;li&gt;main&lt;/li&gt;
&lt;li&gt;mark&lt;/li&gt;
&lt;li&gt;nav&lt;/li&gt;
&lt;li&gt;section&lt;/li&gt;
&lt;li&gt;summary&lt;/li&gt;
&lt;li&gt;time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;HTML events&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;window events&lt;/li&gt;
&lt;li&gt;keyboard events&lt;/li&gt;
&lt;li&gt;mouse events&lt;/li&gt;
&lt;li&gt;form events&lt;/li&gt;
&lt;li&gt;media events&lt;/li&gt;
&lt;li&gt;drag events&lt;/li&gt;
&lt;li&gt;clipboard events&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>html</category>
    </item>
    <item>
      <title>Top 8 HTML interview questions &amp; answers</title>
      <dc:creator>satschnt</dc:creator>
      <pubDate>Mon, 31 Jul 2023 10:48:05 +0000</pubDate>
      <link>https://dev.to/satschnt/top-8-html-interview-questions-answers-fac</link>
      <guid>https://dev.to/satschnt/top-8-html-interview-questions-answers-fac</guid>
      <description>&lt;p&gt;&lt;strong&gt;#1 What is HTML?&lt;/strong&gt;&lt;br&gt;
HTML stands for Hyper Text Markup Language and is the standard language for &lt;br&gt;
creating websites. &lt;/p&gt;

&lt;p&gt;The latest version is known as HTML5. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;#2 What is formatting in HTML?&lt;/strong&gt;&lt;br&gt;
HTML Formatting is a process of formatting text for better look and feel. HTML provides us the ability to format text without using CSS. There are many formatting tags in HTML. These tags are used to make text bold, italicized, or underlined.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;#3 What are tags?&lt;/strong&gt;&lt;br&gt;
HTML tags are like keywords that tell the browser how to display certain things. &lt;/p&gt;

&lt;p&gt;The structure is following:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1) Opening tag:&lt;/strong&gt;  states where the element begins&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2) The content:&lt;/strong&gt; this is everything that goes into the element&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3) Closing tag:&lt;/strong&gt; states where the element ends&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;#4 Does all tags have to be closed?&lt;/strong&gt;&lt;br&gt;
No, there are some tags like the &lt;code&gt;&amp;lt;image&amp;gt;&lt;/code&gt; or the &lt;code&gt;&amp;lt;br&amp;gt;&lt;/code&gt; tag that don't require a  closing tag.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;#5 How many types of heading does HTML contain?&lt;/strong&gt;&lt;br&gt;
There are six types of headings which are defined as &lt;code&gt;&amp;lt;h1&amp;gt;, &amp;lt;h2&amp;gt;, &amp;lt;h3&amp;gt;, &amp;lt;h4&amp;gt;, &amp;lt;h5&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Each type has a different text size with &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; being the biggest one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;#6 How to create a hyperlink in HTML?&lt;/strong&gt;&lt;br&gt;
For creating a hyperlink you can use the &lt;code&gt;&amp;lt;a&amp;gt;&lt;/code&gt; tag. The href attribute is the link destination. You can also add the target attribute and define if a link should open in a new window. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;#7 What is the difference between HTML elements and tags?&lt;/strong&gt;&lt;br&gt;
Tags are the starting and ending parts of an HTML element. They begin with &amp;lt; symbol and end with &amp;gt; symbol.&lt;/p&gt;

&lt;p&gt;Elements are the content between the tags.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;#8 What are some common lists that are used?&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;ol&amp;gt;&lt;/code&gt; is an ordered list and displays elements in numbered format.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;ul&amp;gt;&lt;/code&gt; is an unordered list and displays elements with bullet points.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;dl&amp;gt;, &amp;lt;dt&amp;gt;, &amp;lt;dd&amp;gt;&lt;/code&gt; tags are used to define definition lists and they display elements in definition form like in a dictionary.&lt;/p&gt;

</description>
      <category>html</category>
    </item>
    <item>
      <title>8 things to consider before you develop a website</title>
      <dc:creator>satschnt</dc:creator>
      <pubDate>Mon, 31 Jul 2023 10:46:35 +0000</pubDate>
      <link>https://dev.to/satschnt/8-things-to-consider-before-you-develop-a-website-hd6</link>
      <guid>https://dev.to/satschnt/8-things-to-consider-before-you-develop-a-website-hd6</guid>
      <description>&lt;p&gt;&lt;strong&gt;01: Domain&lt;/strong&gt;&lt;br&gt;
Choose a domain that’s fitting with your business and make it easy to remember for your users. &lt;br&gt;
Try to use a .com address because that’s the most common one and people rather trust a .com domain than something else. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;02: Hosting&lt;/strong&gt;&lt;br&gt;
Find a reliable hosting and choose the right package for your use case.&lt;br&gt;
Is it a small website? Then you don’t need the super mega pro package with 500GB of cloud storage. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;03: Technologies&lt;/strong&gt;&lt;br&gt;
Take a second to think about what technology would be the best fit for your website. &lt;br&gt;
What programming languages will you use, does using a CMS system would make sense? &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;04: Purpose&lt;/strong&gt;&lt;br&gt;
Write it down - what’s the purpose of the website you’ll build? &lt;br&gt;
Is it to showcase a business, is it a social platform or maybe an online shop? &lt;br&gt;
Write down the purpose and start building up from that.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;05: Audience&lt;/strong&gt;&lt;br&gt;
Figure out who the main audience is and build a website that will attract that audience. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;06: Sitemap&lt;/strong&gt;&lt;br&gt;
What content will you have on your website?&lt;br&gt;
Make a flow chart or a mind map to visualize the structure of your website. That helps with prioritizing what should go on the first level of the menu. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;07: Colors&lt;/strong&gt;&lt;br&gt;
Colors affect the whole look and feel of your website and they also affect how users feel while being on your website. &lt;br&gt;
With knowing what your purpose is, you’ll have it easier to choose the right colors.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;08: Layout&lt;/strong&gt;&lt;br&gt;
Start with roughly sketching out your website and think about what you want to show on the main page. &lt;br&gt;
It’s good to have the overall content being shown on the main page. &lt;br&gt;
You can summarize subpages and display a teaser on the main site.&lt;/p&gt;

</description>
      <category>webdev</category>
    </item>
    <item>
      <title>15 technical acronyms with their meaning &amp; explanation</title>
      <dc:creator>satschnt</dc:creator>
      <pubDate>Mon, 31 Jul 2023 10:45:10 +0000</pubDate>
      <link>https://dev.to/satschnt/15-technical-acronyms-with-their-meaning-explanation-3ooj</link>
      <guid>https://dev.to/satschnt/15-technical-acronyms-with-their-meaning-explanation-3ooj</guid>
      <description>&lt;p&gt;&lt;strong&gt;AWS - Amazon Web Services&lt;/strong&gt;&lt;br&gt;
AWS is a cloud computing platform provided by Amazon. AWS services can offer an organisation tools such as compute power, database storage and content delivery services.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;VCS - Version Control Systems&lt;/strong&gt;&lt;br&gt;
A VCS automates the process of version control. It tracks the changes to a file or a set of files over time. It keeps a complete history of your code and other files, allowing an user to return to a previous version if needed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ASCII - American Standard Code for Information Interchange&lt;/strong&gt;&lt;br&gt;
ASCII is 128 specified characters that are categorized into seven-bit integers which define standard encoding for letter, number and symbol characters. &lt;/p&gt;

&lt;p&gt;It also became the standard for the US government in 1968.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;WYSIWYG - What You See Is What You Get&lt;/strong&gt;&lt;br&gt;
“What you see is what you get” refers to the ability of an editor/software to show the user exactly how their content will look. A very common example for that is Microsoft Word.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SDK - Software Development Kit&lt;/strong&gt;&lt;br&gt;
An SDK is used to create applications for a specific platform or programming language. A SDK typically includes an API, but it also includes other resources like documentation, sample code, and development tools.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SaaS - Software-as-a-Service&lt;/strong&gt;&lt;br&gt;
SaaS is a cloud based software delivery model that allows end users to access software applications over the internet.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;IDE - Integrated Development Environment&lt;/strong&gt;&lt;br&gt;
An IDE is a software application that helps programmers develop software code efficiently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;WWW - World Wide Web&lt;/strong&gt;&lt;br&gt;
WWW is a network of online content that is formatted in HTML and accessed via HTTP. The term refers to all the interlinked HTML pages that can be accessed over the internet.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;URL - Uniform resource locator&lt;/strong&gt;&lt;br&gt;
URL is another name for a web address. URLs are made of letters, numbers and other symbols in a standard form. People use them on computers, to make the computer fetch and show some specific resource (usually a web page) from another computer (web server) on the Internet.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;APN - Access point name&lt;/strong&gt;&lt;br&gt;
APN is a gateway between a cellular network and the internet. It’s an important entry point for cellular devices because it defines the type of network access the device will receive and allows security.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;HDMI - High definition multimedia interface&lt;/strong&gt;&lt;br&gt;
The HDMI cable transmits data (in form of digital 0s and 1s) from a source to device such as a TV, computer, laptop, projector or speaker. The Standard HDMI cable is one of the most common and has been designed to work with satellite TV resolutions of up to 720p and 1080i, with the bandwidth being capable of speeds up to 5Gbps.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;LED - Light emitting diode&lt;/strong&gt;&lt;br&gt;
LED is a semiconductor device that emits light when an electric current is passed through it. Light is produced when the particles that carry the current combine together within the semiconductor material.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RAM - Random access memory&lt;/strong&gt;&lt;br&gt;
RAM is your computer or laptop's short-term memory. It's where the data is stored that your computer processor needs to run your applications and open your files.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;WiFi - Wireless Fidelity&lt;/strong&gt;&lt;br&gt;
WiFi is a wireless technology used to connect computers, tablets, smartphones and other devices to the internet.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;EOF - End Of File&lt;/strong&gt;&lt;br&gt;
EOF is a code placed by a computer after a file's last byte of data.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
