short for logo gram
complex number lo.gos
a name, symbol, or trademark designed for easy and define recognition, Especially one born on a single printing plate or piece of type.
Teaching language: a name, LOGO or trademark designed for easy and clear debate, especially on a single printing plate or sample
More specifically, LOGO refers to a graphic representing a brand, such as Baidu's logo. It is the figure in the upper left corner. As soon as you see it, it will cause association and achieve brand effect. A brand is a collection that includes many contents, including LOGO. It can be said that LOGO is a tangible business card of the brand.
Quote: /question/132777.html
SOHO in the traditional sense SOHO-Small Office (and) Home Office literally means small office and home office, which actually means freelancer or freelancer. Of course, SOHO also represents a more free, open and flexible way of working. With the advent of the Internet age, SOHO has become one of the fashionable words that people are scrambling to chase. Houses, furniture and articles specially designed for SOHO people have also become new selling points for businesses. Some real estates are often labeled as SOHO, which means that the apartments for freelancers are a combination of business and residence, and the scenery is infinite for a time. A few years ago, the SOHO people mostly referred to those specialized freelancers: freelance writers, graphic designers, handicraft designers, artists and so on. In the past two years, with the wide application of the Internet in various fields and the popularization of office equipment such as computers, fax machines and printers at home, SOHO has become a working method that more and more people can try, and its connotation and form are also changing.
Our SOHO
SOHO, as a fashionable, relaxed and free lifestyle and attitude towards life, should not be confined to those who just work at home. After all, it is only a very small group in society. Since SOHO represents a free, open and flexible way of working, we think that as long as people can work in this way, whether you work at home or in other places; Whether you focus on one job or work part-time, you can proudly call yourself SOHO. Therefore, we prefer to call SOHO Super Office (and) Human Office, that is, super office and humanized office.
quote: /question/14582.html
CSS is the abbreviation of Cascading style Sheets, which is translated as "cascading style sheets" in Chinese, and I call it "cascading style sheets". I think this is a
point, and it has no other meaning. In fact, it is a set of styles. You may be unfamiliar with the term CSS. In fact, no matter whether you surf the Internet with Internet Explorer or
Netscape Navigator, you are dealing with CSS almost all the time, and it may be difficult to find a web page that has never used CSS on the Internet. No matter what software you use to make web pages, you are using CSS intentionally or unintentionally. Using CSS well can make your webpage more concise. Why do some people make webpages with the same content < P > tens of KB, while experts make them only tens of KB? The role of CSS is self-evident. I sorted out my little experience in using CSS and some questions asked by netizens in their letters
for your reference.
1. CSS is generally used in three ways in web page making, so which usage should be used specifically?
When there are multiple CSS pages to be used, the CSS file is externally connected, so that the code of the webpage is greatly reduced and it is very convenient to modify; CSS used only in a single web page
adopts document header mode; CSS, which is only used in one or two places on a web page, adopts inline insertion.
2. should the three uses of CSS be mixed in a web page?
the three usages can be mixed without causing confusion. That's why it's called "cascading style sheet". When a browser displays a web page, it's
handled as follows: first, check whether there is inline inserted CSS, and if there is, execute it, and leave it alone for other CSS in this sentence; Secondly, check the CSS of the head mode, and execute
if there is one; Check CSS in the form of external files when there are neither of them. Therefore, it can be seen that the execution priorities of three CSS are: inline insertion, header < P > style, and external file style.
3. How to make external file CSS in Dreamweaver3?
there is no special requirement for using external file CSS in Dreamweaver3, and a *.css file is created with Notepad, which is displayed in the <: head> And
<; /head> Add a code like this between: <; Link rel="stylesheet" href= "Fill in your CSS file address (relative path+file name
)" type="text/css"> Just do it.
4. How to quickly create CSS external files with Dreamweaver3?
for a web designer who is new to CSS, it is quite difficult to create a CSS external file with an editor such as notes. Because
Dreamweaver3 supports CSS very well, it is much easier to help with it. Specifically, it can be done as follows:
1) First, write down the cell names that may be used in the web pages of the website on paper, then call out the CSS panels in the editing window of Dreamweaver3, define the meaning of
one by one, and write a little related content on a blank page appropriately, and try it out while defining it. If the effect is not satisfactory, modify it immediately;
2) After all the definitions are completed, create an empty CSS external file with Notepad and put it in <: head> With < /head> Copy
the defined CSS between them into a CSS file, and you're done. The whole process is just clicking the mouse, is it convenient?
5. Do you need to write the code manually when using inline CSS in Dreamweaver3?
no need! Use the CSS panel to define the CSS you want to use first, then insert: style= ""in the tag where you want to insert CSS, and then change the CSS you just defined from <; head>
drag it into this double quotation mark, and just delete the part outside the curly braces.
6. "<: ! -"and"-> " , it seems useless, don't?
The purpose of this pair of Dongdong is not to cause errors in the lower version of the browser. If a browser executing this page does not support CSS, it will ignore its contents. Although few people use browsers that don't support CSS now, almost anything can happen on the Internet, so it's better to keep them.
7. How to add background color to some words?
to add different colors to the text, it is very convenient to select the color of the text on the property panel in DW3, but it has no corresponding function to add different background colors to some text
. We can first make a CSS (such as bgstyle) that defines the background color, and click a few mouse in DW3 to complete it. For example, a CSS that defines a light yellow
background looks like this:
<; style type="text/css">
< ! --
.bgstyle { background: #FFFFCC}
-->
< /style>
select that paragraph when you want to use it, and then click "bgstyle" on the CSS panel.
8. how to add background images to some texts?
Similar to the operation of adding background color, the image is loaded in the background. The code of a defined CSS example with background image is as follows:
<; style type="text/css">
< ! --
.imgbgstyle { background-image: url(/logo.gif)}
-->
< /style>
select that paragraph when you want to use it, and then click "imgbgstyle" on the CSS panel.
9. How to make the background of the page stand still when the text "scrolls"?
The CSS to make the background pattern not "scroll" with the text is as follows:
<; style type="text/css">
< ! --
BODY { background: purple url(/bg.jpg);
background-repeat:repeat-y;
background-attachment:fixed
}
-->
< /style>
1. How to define word spacing?
in DW3, the "letter spaceing" property on the "Block" of the CSS property definition dialog box (style Definition for .style1) is defined as the word spacing, which refers to the extra spacing between each character, and the length can be taken as a unit, which can be both positive and negative, and when negative values are taken, the characters will be crowded together. The lower
surface code is a well-defined example of word spacing CSS:
<; style type="text/css">
< ! --
.style1 { letter-spacing: 3px}
-->
< /style>
11. How to underline, underline, strike out and blink words?
these
contents are defined by the "decoration" attribute on the "Type" of the CSS attribute definition dialog box (style Definition for .style1) in DW3. It should be noted that flicker attribute is not supported by some versions of browsers, so it is better to use it sparingly. The following is a CSS example that defines the above effect:
<; style type="text/css">
< ! --
.style1 { text-decoration: underline overline line-through blink}
-->
< /style>
where: "underline" is the definition underline; "overline" is the definition of overline; "line-through" defines a strikethrough; "blink"
is defined as text flashing.
12. how to make the webpage have the function of "indenting the first line"?
because DW3 is inconvenient to input spaces, using "first line indentation" will make up for this deficiency. In DW3, the "text-indent" attribute on the "Block" of the CSS property definition dialog box (style Definition
for .style1) is defined as "first line indentation", which means the first line of each paragraph, that is,
a new paragraph is formed by pressing the Enter key directly. Indentation is best based on "em" (characters). For example, Chinese character layout requires two Chinese characters to be indented at the beginning of each paragraph, and the set CSS is as follows:
< style type="text/css">
< ! --
.style1 { text-indent: 2em}
-->
< /style>
in DW3, it should be noted that "ems" refers to "em" in the indentation unit selection box on the right
side of "text-indent" on the "Block" of CSS's style Definition for .style1.
13. when typesetting with tables, can you make the content in a certain direction leave the table line a little?
yes! In DW3, the "margin" on the "Box" of CSS's style Definition for .style1 defines the distance between the content and the
open edge, and can define four directions respectively: "top", "bottom", "left" and "right". The following is a CSS example
subcode that defines leaving "1px" on the left:
<; style type="text/css">
< ! --
.style1 { margin: px px px 1px}
-->
< /style>
14. Can you add a border to some content?
CSS can be used to add a Border to a part of the content. In DW3, the "border" in the CSS style Definition for .style1 defines the border line, and the four sides of "top", "bottom", "left" and "right" can define the thickness and color of the line respectively. Don't forget the "style" below after these definitions.