<?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: Michael Still</title>
    <description>The latest articles on DEV Community by Michael Still (@michael68088671).</description>
    <link>https://dev.to/michael68088671</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%2F282295%2F9e35db8e-c683-4376-b147-2bc19815ec6b.jpg</url>
      <title>DEV Community: Michael Still</title>
      <link>https://dev.to/michael68088671</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/michael68088671"/>
    <language>en</language>
    <item>
      <title>How To Write A Good White Paper?</title>
      <dc:creator>Michael Still</dc:creator>
      <pubDate>Fri, 29 Nov 2019 13:39:43 +0000</pubDate>
      <link>https://dev.to/michael68088671/how-to-write-a-good-white-paper-49lp</link>
      <guid>https://dev.to/michael68088671/how-to-write-a-good-white-paper-49lp</guid>
      <description>&lt;p&gt;White paper is a way of reporting of some policy or action taken by any organization or government. It a process of progress on a particular subject. There is a specific format by which a white paper may be published. The organization often use the way of templates to issue certain notification.&lt;br&gt;
White paper is the common and popular way of giving information to the public. The governments often take this route to give notice of some new law. This is a general practice within the government organization to use the white paper as mode for giving some information to the public.&lt;/p&gt;

&lt;p&gt;The white paper format is common and not so hard . The most important part of such kind of term paper it’s how to write a body paragraph &lt;a href="https://vortexessay.com/writing-body-paragraph/"&gt;how to write a body paragraph&lt;/a&gt; . All the organizations do know the style of issuing a white paper. It is a must to follow certain formula to issue the term paper. The white paper is the official mode of any circulars issued by any government or business organization.&lt;br&gt;
In this white paper, mainly it is stated what action the said organization has taken. It shows the basic intention of the issuing authority. It is widely used in all local body offices and governments. Nowadays, big multinational companies also use the white paper to notify certain decisions of the company. The company may announce certain actions taken on white paper.&lt;/p&gt;

&lt;p&gt;It is must to use white paper to declare certain law newly formed by the government. It is just an announcement in form of notification.. It is the popular way to do it. It is also advisable to issue white paper as soon as a law in formed. It is type of reporting to the public. The white paper notice is published in front of the press reporters so that everyone can know about it. The government is duty bound to issue a white paper about some legal action is taken. The Said body is also should issue the white paper about some projects to be launched.&lt;/p&gt;

&lt;p&gt;The basic purpose of this white paper is to share the information with the public. It is mostly used by government. The main objective of this whitepaper is making people aware of certain events that taking place. It is an official gadget o to get people knows what is going on. The government can issue several White Papers in a day. It can be issued by different department. A top official of the concerned department will sign in the order. It is the important part of daily administration work and is used in various ways.The basic idea is to let people know about the various decisions by government.&lt;/p&gt;

&lt;p&gt;Companies also use the process of white paper to let its employee know about its decision. It is a medium through which any communication is sent. When any plants are set up, company issues a white  &lt;a href="https://www.stickytickets.com.au/4dghu/nursing_dissertation_writing.aspx?previewevent=95710"&gt; paper&lt;/a&gt;. When a lock out is there in any factory, company issues a white paper. Any new offices are set up, it must be declared in white paper. So, the importance of white paper is enormous.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>CSS</title>
      <dc:creator>Michael Still</dc:creator>
      <pubDate>Fri, 29 Nov 2019 13:21:28 +0000</pubDate>
      <link>https://dev.to/michael68088671/css-1oe7</link>
      <guid>https://dev.to/michael68088671/css-1oe7</guid>
      <description>&lt;p&gt;CSS is a separate language with its own format and rules, but it was created specifically for HTML. Using CSS, you can describe the appearance of the page and individual elements. For example, text color, font size, size and indentation of images, frames around elements, rounding in photos, and so on.&lt;/p&gt;

&lt;p&gt;CSS stands for Cascading Style Sheets. Now we will figure out how to set styles, and where does the word "cascade".&lt;/p&gt;

&lt;p&gt;Let's say we have this HTML:&lt;/p&gt;

&lt;p&gt; In the territory where New York is now located, long
before the Europeans appeared here, Indian tribes lived
Manahattou and Canarsi. &lt;/p&gt;
This is all one paragraph, but I added line feeds to make the text easier to read on this page. In HTML, line feeds are not translated into actual line feeds in the final page. Instead, it will turn into a single space. Multiple line breaks will also turn into just one space. Well, a few spaces will also turn into one space.

All options below will lead to one result:

&lt;p&gt; In the territory where New York is now located, long before the Europeans appeared here, the Indian tribes of Manahattou and Canarsi lived. &lt;/p&gt;

&lt;p&gt; In the territory where New York is now located, long
before the Europeans appeared here, Indian tribes lived
Manahattou and Canarsi. &lt;/p&gt;

&lt;p&gt; In the territory where New York is now located, long

before the Europeans appeared here, Indian tribes lived

Manahattou and Canarsi. &lt;/p&gt;

&lt;p&gt; In the territory where New York is now located, long
before the Europeans appeared here, Indian tribes lived
Manahattou and Canarsi. &lt;/p&gt;
For a real line feed, you can use a single tag &lt;br&gt;.

We are distracted. So, we want to add style to our HTML. Using the CSS code below, we make sure that all p elements have red text inside and a font size of 20 pixels:

p {
  color: red;
  font-size: 20px;
}
Here is a live example:


The first part is the selector. To them we choose what to apply the style to.
The set of styles is indicated after the selector in curly ({,}) brackets.
A collection consists of property: value pairs.


Classes and id
But what if we want to apply this style not to all paragraphs, but only to some? There are classes for such tasks in HTML and CSS.

&lt;p class="red"&gt; In the territory where New York is now located,
long before the appearance of Europeans here, Native American
Manahattou and Canarsi tribes. &lt;/p&gt;

&lt;p&gt; This is confirmed by the finds of arrowheads and
other artifacts in areas of the city that are not built up
buildings such as Inwood Hill Park and Riverside Park.
&lt;/p&gt;

&lt;p class="red"&gt; European settlements appeared here in 1624. &lt;/p&gt;

&lt;p&gt;We indicated the class in two paragraphs. Now we need to update the CSS, because now it does not take the class into account and applies styles to all paragraphs. Specify the class:&lt;/p&gt;

&lt;p&gt;p.red {&lt;br&gt;
  color: red;&lt;br&gt;
  font-size: 20px;&lt;br&gt;
}&lt;br&gt;
The p.red selector means "all elements of type p with class red."&lt;/p&gt;

&lt;p&gt;That is, if we add the red class to an element of another type, for example, &lt;a class="red" href="https://goo.gl"&gt; Goo &lt;/a&gt;, then this element does not turn red: the style works strictly for p.&lt;/p&gt;

&lt;p&gt;You can free the style of this restriction:&lt;/p&gt;

&lt;p&gt;.red {&lt;br&gt;
  color: red;&lt;br&gt;
  font-size: 20px;&lt;br&gt;
}&lt;br&gt;
The .red selector means "all elements of any type with class red."&lt;/p&gt;

&lt;p&gt;Suppose the visual style of our page has changed, and important pieces of text are now highlighted not in red with an enlarged font, but in green and italics.&lt;/p&gt;

&lt;p&gt;.red {&lt;br&gt;
  color: green;&lt;br&gt;
  font-style: italic;&lt;br&gt;
}&lt;br&gt;
Great, but the class name doesn't make much sense now. It is no longer red in fact. You will have to change it to green and change the class in HTML for all the corresponding elements.&lt;/p&gt;

&lt;p&gt;But the idea is better - initially use the semantic meaning in the names of the classes, and not the peculiarity of the implementation. For example, if in this way we highlighted more important parts of the text, then it was worth calling the important class:&lt;/p&gt;

&lt;p&gt;.important {&lt;br&gt;
  color: green;&lt;br&gt;
  font-style: italic;&lt;br&gt;
}&lt;br&gt;
Now, when changing colors or any other details of this style, we do not need to worry about the name: the meaning will not change, only the specific implementation will change.&lt;/p&gt;

&lt;p&gt;Sometimes there is an element in a document, which in meaning can be only one. For example, in articles this is often the heading: on the page of the article there can be only one heading of the article.&lt;/p&gt;

&lt;p&gt;Another example is a site logo somewhere upstairs.&lt;/p&gt;

&lt;p&gt;For unique "one-time" elements, use id:&lt;/p&gt;

&lt;h1 id="article-title"&gt; History of New York City &lt;/h1&gt;

&lt;p class="red"&gt; In the territory where New York is now located,
long before the appearance of Europeans here, Native American
Manahattou and Canarsi tribes. &lt;/p&gt;

&lt;p&gt; This is confirmed by the finds of arrowheads and
other artifacts in areas of the city that are not built up
buildings such as Inwood Hill Park and Riverside Park.
&lt;/p&gt;

&lt;p&gt;And so you can specify the style:&lt;/p&gt;

&lt;p&gt;h1 # article-title {&lt;br&gt;
  font-family: Georgia, serif;&lt;br&gt;
  color: # 1050ff;&lt;br&gt;
}&lt;br&gt;
The structure and idea are the same as with classes, but instead of a period. used grill #. In this style, we set the Georgia serif font and the blue color in the HEX format. Enter "color picker" in google to work with interact&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is HTML really?</title>
      <dc:creator>Michael Still</dc:creator>
      <pubDate>Fri, 29 Nov 2019 12:54:23 +0000</pubDate>
      <link>https://dev.to/michael68088671/what-is-html-really-1c2k</link>
      <guid>https://dev.to/michael68088671/what-is-html-really-1c2k</guid>
      <description>&lt;p&gt;HTML is not a programming language; It is a markup language, and is used to tell your browser how to display the web pages you visit. It can be complicated or simple, depending on how the web designer wants. HTML consists of a number of elements that you use to nest or wrap different pieces of content to make the content appear or act in a certain way. Enclosing tags can make a word or image a link to something else, can make words in italics, make the font larger or smaller, and so on.&lt;/p&gt;

&lt;p&gt;The main parts of our element are:&lt;/p&gt;

&lt;p&gt;Opening tag: Consists of the name of the element (in this case, “p”) enclosed in opening and closing angle brackets. The opening tag indicates where the item begins or takes effect, in this case where the paragraph begins.&lt;br&gt;
Closing tag: This is the same as the opening tag, except that it includes a slash in front of the element name. The closing element indicates where the element ends, in this case where the paragraph ends. The lack of a closing tag is one of the most common beginner mistakes and can lead to strange results.&lt;br&gt;
Content: This is the content of the element, which in this case is just text.&lt;br&gt;
Element: An opening tag, a closing tag, and content together make up the element.&lt;/p&gt;

&lt;p&gt;Attributes contain additional information about the element that you do not want to show in the actual content. In this case, class is the attribute name, and editor-note is the attribute value. The class allows you to give an element an identification name, which can later be used to access the element with style information and other things.&lt;/p&gt;

&lt;p&gt;An attribute must always have:&lt;/p&gt;

&lt;p&gt;A space between it and the name of the element (or the previous attribute if the element already has one or more attributes).&lt;br&gt;
The name of the attribute followed by an equal sign.&lt;br&gt;
An attribute value enclosed in quotation marks on both sides.&lt;br&gt;
You can also place elements inside other elements - this is called an attachment. If we want to say that our cat is very annoyed, we can wrap the word “very” in the &lt;strong&gt; element, which indicates that the word should be strongly accented.&lt;/strong&gt;&lt;/p&gt;

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