<?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: somtobiotech</title>
    <description>The latest articles on DEV Community by somtobiotech (@somtobiotech).</description>
    <link>https://dev.to/somtobiotech</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%2F890317%2Fbd2694c8-519a-4cac-8c8b-43af5a72be69.png</url>
      <title>DEV Community: somtobiotech</title>
      <link>https://dev.to/somtobiotech</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/somtobiotech"/>
    <language>en</language>
    <item>
      <title>INSPECTING ELEMENT</title>
      <dc:creator>somtobiotech</dc:creator>
      <pubDate>Mon, 25 Jul 2022 09:33:52 +0000</pubDate>
      <link>https://dev.to/somtobiotech/inspecting-element-4445</link>
      <guid>https://dev.to/somtobiotech/inspecting-element-4445</guid>
      <description>&lt;p&gt;In any modern browser when you click on  any CSS element, if you scroll down you will see an inspect button. Then you click on it you will then see control of your website page. Then you can change the setting of the website  like the color, style and the size.&lt;/p&gt;

&lt;p&gt;This are the roles when inspecting element.&lt;br&gt;
1} Tracking down where properties are coming from.&lt;br&gt;
2} Experimenting or troubleshooting.&lt;br&gt;
3} Inspiration from other websites.  &lt;/p&gt;

</description>
    </item>
    <item>
      <title>CSS TYPOGRAPHY</title>
      <dc:creator>somtobiotech</dc:creator>
      <pubDate>Fri, 22 Jul 2022 09:45:00 +0000</pubDate>
      <link>https://dev.to/somtobiotech/css-typography-76k</link>
      <guid>https://dev.to/somtobiotech/css-typography-76k</guid>
      <description>&lt;p&gt;What is Typography: Typography is the art of arranging type or text so that it is easy to read and supports the overall design of a project. In CSS we can use the font family property to define a font stack. if a computer or device does not have the first font, that will list will fall back and use the next font. Now a key of concept in the font stack is to make sure that the last item in your list is not a font in and of itself but is instead a keyword. one of the most common font stack is to try and use Helvetica and if it is not available use Arial, and if Arial is not available then we will just let the browser use whatever system default san-serif it wants to use.so if you save we can see that page is using Helvetica, A technology named @fontface to use any font that you have license to use. you can control the size of text by using the font size property. When it comes to values for this property we have many different units of measurement at our disposal. so we can use percentages or pixels of 17, To manage the boldness of text we can use the font weight property. The most vital properties is one of the most important parts of typography is creating a vertical rhythm and a very important part of vertical rhythm is line spacing or lettering. It refers to the space between each line of the text, In CSS it is called line height.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>STYLING FORMS</title>
      <dc:creator>somtobiotech</dc:creator>
      <pubDate>Thu, 21 Jul 2022 12:48:56 +0000</pubDate>
      <link>https://dev.to/somtobiotech/styling-forms-2gdn</link>
      <guid>https://dev.to/somtobiotech/styling-forms-2gdn</guid>
      <description>&lt;p&gt;This is a course of an HTML and CSS so this lesson is simply about making forms look pretty. The forms are prettier and easier to use, that why web designer exists it's our job to whip this form into shape so that it look's like something people will actually want to inter act with. we will make each field sit on it's row, so I'll begin with a type selector input. But we don't want to select all inputs on the page because for example this check box is an input so we need to make our selector a bit more specific we only want to select inputs that use a type of email and now we can string together declarations and create our style.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>STYLING DATA TABLES</title>
      <dc:creator>somtobiotech</dc:creator>
      <pubDate>Wed, 20 Jul 2022 12:56:18 +0000</pubDate>
      <link>https://dev.to/somtobiotech/styling-data-tables-a24</link>
      <guid>https://dev.to/somtobiotech/styling-data-tables-a24</guid>
      <description>&lt;p&gt;How To Style Data Tables&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The First row uses the earth table header elements the rest of our table the actual data in our table uses td for table data.
2.Then We begin by targeting these elements over in our CSS then we create a new area or create a comment.
3.Table style within any table element, look for the table header elements and let's it override their text-line to be left.
4.We will want to give the table header an alternate background color so that it stands out from the actual data in the table.
5.So to do that within the same wheel will say background color then, I will paste in the hexadecimal color code for a green that we are using elsewhere on the page.
6.Then you will make the text white, and let's also gives it a text shadow so it pops.
7.You will then not want any blur on the shadow and we will use a transparent black value.
8.Then next we add a border around each table header element and each table data or cell.
9.So to do that we are going to want to select both the table header elements comma.
10.Let tack on another selector and all of the tv elements border, so we want a border on all for concerns.
11.The top, bottom and left, we want the border to be one pixel thick.
12.We want it to be a solid line, we don't want it to be dotted or dashed.
13.And we want to use a color that same green value color.&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>CSS ESSENTIALS</title>
      <dc:creator>somtobiotech</dc:creator>
      <pubDate>Tue, 19 Jul 2022 13:18:23 +0000</pubDate>
      <link>https://dev.to/somtobiotech/css-essentials-461o</link>
      <guid>https://dev.to/somtobiotech/css-essentials-461o</guid>
      <description>&lt;p&gt;Type of css selectors&lt;br&gt;
1]Type Selectors: It is a name of an element and it captures every element in that type.&lt;br&gt;
2]Descendant Selectors: It helps element to nest in other elements.&lt;br&gt;
3]Class Selectors: It helps reuse bit of codes.&lt;/p&gt;

&lt;p&gt;How to create a page layout with floats&lt;br&gt;
1]The "float" and "width" properties can be used to create column&lt;br&gt;
2]Clear your floats&lt;br&gt;
3]There are different units of measure for the width property&lt;br&gt;
with percentage,px,and many others. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>CSS ESSENTIALS</title>
      <dc:creator>somtobiotech</dc:creator>
      <pubDate>Mon, 18 Jul 2022 14:11:00 +0000</pubDate>
      <link>https://dev.to/somtobiotech/css-essentials-2430</link>
      <guid>https://dev.to/somtobiotech/css-essentials-2430</guid>
      <description>&lt;p&gt;Liquid syntax error: Tag '{%' was not properly terminated with regexp: /\%\}/&lt;/p&gt;
</description>
    </item>
    <item>
      <title>USING CSS AND HTML IN DESIGNING WEBSITE</title>
      <dc:creator>somtobiotech</dc:creator>
      <pubDate>Thu, 14 Jul 2022 13:25:25 +0000</pubDate>
      <link>https://dev.to/somtobiotech/using-css-and-html-in-designing-website-2732</link>
      <guid>https://dev.to/somtobiotech/using-css-and-html-in-designing-website-2732</guid>
      <description>&lt;p&gt;WHAT IS HTML:HTML DEFINES THE CONTENT OF A WEBSITE&lt;br&gt;
HTML STANDS FOR HYPER TEXT MARKUP LANGUAGE&lt;br&gt;
WITH HTML YOU CAN CREATE YOUR OWN WEBSITE&lt;br&gt;
HTML IS EASY TO LEARN&lt;br&gt;
HTML EXAMPLES&lt;br&gt;
   IN THIS HTML TUTORIAL,YOU WILL FIND MORE THAN 200 EXAMPLES.&lt;br&gt;
WITH OUR ONLINE"TRY IT YOURSELF"EDITOR'YOU CAN EDIT AND TEST&lt;br&gt;
EACH EXAMPLE YOURSELF!&lt;br&gt;
HTML REFERENCES&lt;br&gt;
AT W3SCHOOLS YOU WILL FIND COMPLETE REFERENCES ABOUT HTML&lt;br&gt;
ELEMENTS,ATTRIBUTES,EVENTS,COLOUR NAMES,ENTITIES,CHARACTER-SETS,&lt;br&gt;
URL ENCODING,LANGUAGE CODES,HTTP MESSAGES,BROWSER SUPPORT AND MORE&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                     CSS
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;WHAT IS CSS:CSS IS THE LANGUAGE WE USE TO STYLE HTML.&lt;br&gt;
CSS DESCRIBES HOW HTML ELEMENTSSHOULD BE DISPLAYED.&lt;br&gt;
CSS STANDS FOR CASCADING STYLE SHEETS.&lt;br&gt;
CSS SAVES ALOT OF WORK.IT CAN CONTROL THE LAYOUT OF&lt;br&gt;
MUTIPLE WEBPAGES ALL AT ONCE.&lt;br&gt;
EXTERNAL STYLE SHEETS ARE STORED IN CSS FILES.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>WEB DEVELOPMENT</title>
      <dc:creator>somtobiotech</dc:creator>
      <pubDate>Tue, 12 Jul 2022 14:03:25 +0000</pubDate>
      <link>https://dev.to/somtobiotech/web-development-4m4h</link>
      <guid>https://dev.to/somtobiotech/web-development-4m4h</guid>
      <description>&lt;p&gt;WEB DEVELOPERS BUILD WEBSITES.BROWSING THE WEB IS LIKE CALLING A FRIEND &lt;br&gt;
HOW THE WEB WORKS&lt;br&gt;
URL=[UNIFORM RESOURCE LOCATOR]&lt;br&gt;
THE ADDRESS OF A WEBSITE OR A SPECIFIC PAGE OF A WEBSITE&lt;br&gt;
EXAMPLE=&lt;a href="https://www.amazon.com"&gt;https://www.amazon.com&lt;/a&gt;&lt;br&gt;
HTTPS: Hyper Text Transfer Protocol Secure&lt;/p&gt;

&lt;p&gt;WHICH CODE DO WEB DEVELOPERS WRITE&lt;br&gt;
WHAT ARE THESE"BROWSER INSTRUCTIONS"&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                    HTML                                  Instruction that tell the browser what should be displayed on
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;the screen. First language for a web developer is HTML&lt;br&gt;
HTML:HYPER TEXT MARKUP LANGUAGE&lt;/p&gt;

&lt;h2&gt;Recommended products&lt;/h2&gt;

&lt;ul&gt;
   Harry Potter1
   Harry Potter2
&lt;/ul&gt;

&lt;p&gt;HTML5 IS USED TO DEFINE THE CONTENT AND STRUCTURE OF THE DISPLAYED&lt;br&gt;
PAGE.&lt;br&gt;
                      CSS&lt;br&gt;
AS A WEB DEVELOPER WE MUST HAVE A LANGUAGE USED TO STYLE WHICH IS&lt;br&gt;
CSS, CSS:CASCADING STYLE SHEETS&lt;br&gt;
EXAMPLE&lt;br&gt;
h2&lt;br&gt;
Font Size:20px;&lt;br&gt;
Color :purple;&lt;br&gt;
border-bottom:2px solid purple&lt;/p&gt;

&lt;p&gt;CSS3 IS DEFINED AS THE STYLING OF THE DISPLAYED PAGE AND IT'S &lt;br&gt;
CONTENT.IT IS OPTIONAL.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                   JAVASCRIPT
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;JAVASCRIPT ADDS INTERACTIVITY THAT MIGHT BE NEEDED ON THE DISPLAYED PAGE.&lt;/p&gt;

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