Brand Guideline

Developer
Size
4,033 Kb
Views
10,120

How do I make an brand guideline?

What is a brand guideline? How do you make a brand guideline? This script and codes were developed by Eric on 07 December 2022, Wednesday.

Brand Guideline Previews

Brand Guideline - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Brand Guideline</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Droid+Sans'> <link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="header"><img class="icon" src="http://www.monoame.com/autoCAD/img/logoname.png" alt=""/></div>
<div class="content content_white"> <div class="maxWidth"> <h5>style guideline</h5> <h1>品牌網頁視覺引導-40px 大標題</h1> <h1 class="small_english">English style guideline for h1 Title 24px</h1> <div class="titleHr"></div><br/> <h2>品牌網頁視覺引導-30px 大標題</h2> <h2 class="small_english">English style guideline for h1 Title 16px</h2><br/> <h3>品牌網頁視覺引導-20px 大標題</h3> <h3 class="small_english">English style guideline for h1 Title 12px</h3><br/> <hr/> <h5>VI COLORS</h5> <div class="colorChip"> <div class="color_tag">#ffb336</div> <div class="color_block color_block_yellow"></div> </div> <div class="colorChip"> <div class="color_tag">#27232F</div> <div class="color_block color_block_blue"></div> </div> <div class="colorChip"> <div class="color_tag">#f3f7f7</div> <div class="color_block color_block_white"></div> </div> <div class="colorChip"> <div class="color_tag">#333333</div> <div class="color_block color_block_grey"></div> </div> <h5>BUTTON EXAMPLE</h5> <div class="button">按鈕範例</div> <div class="button button_blue">按鈕範例</div> <div class="button button_yellow">按鈕範例</div> </div>
</div>
<div class="content content_grey"> <div class="maxWidth"> <h5>style guideline</h5> <h1>品牌網頁視覺引導-40px 大標題</h1> <h1 class="small_english">English style guideline for h1 Title 24px</h1> <div class="titleHr"></div><br/> <h2>品牌網頁視覺引導-30px 大標題</h2> <h2 class="small_english">English style guideline for h1 Title 16px</h2><br/> <h3>品牌網頁視覺引導-20px 大標題</h3> <h3 class="small_english">English style guideline for h1 Title 12px</h3><br/> <hr/> <h5>VI COLORS</h5> <div class="colorChip"> <div class="color_tag">#ffb336</div> <div class="color_block color_block_yellow"></div> </div> <div class="colorChip"> <div class="color_tag">#27232F</div> <div class="color_block color_block_blue"></div> </div> <div class="colorChip"> <div class="color_tag">#f3f7f7</div> <div class="color_block color_block_white"></div> </div> <div class="colorChip"> <div class="color_tag">#333333</div> <div class="color_block color_block_grey"></div> </div> <h5>BUTTON EXAMPLE</h5> <div class="button">按鈕範例</div> <div class="button button_blue">按鈕範例</div> <div class="button button_yellow">按鈕範例</div> </div>
</div>
<div class="content content_blue"> <div class="maxWidth"> <h5>style guideline</h5> <h1>品牌網頁視覺引導-40px 大標題</h1> <h1 class="small_english">English style guideline for h1 Title 24px</h1> <div class="titleHr"></div><br/> <h2>品牌網頁視覺引導-30px 大標題</h2> <h2 class="small_english">English style guideline for h1 Title 16px</h2><br/> <h3>品牌網頁視覺引導-20px 大標題</h3> <h3 class="small_english">English style guideline for h1 Title 12px</h3><br/> <hr/> <h5>VI COLORS</h5> <div class="colorChip"> <div class="color_tag">#ffb336</div> <div class="color_block color_block_yellow"></div> </div> <div class="colorChip"> <div class="color_tag">#27232F</div> <div class="color_block color_block_blue"></div> </div> <div class="colorChip"> <div class="color_tag">#f3f7f7</div> <div class="color_block color_block_white"></div> </div> <div class="colorChip"> <div class="color_tag">#333333</div> <div class="color_block color_block_grey"></div> </div> <h5>BUTTON EXAMPLE</h5> <div class="button">按鈕範例</div> <div class="button button_blue">按鈕範例</div> <div class="button button_yellow">按鈕範例</div> </div>
</div>
</body>
</html>

Brand Guideline - Script Codes CSS Codes

@charset "UTF-8";
* { position: relative;
}
html, body { margin: 0; padding: 0;
}
.header { height: 300px; background-color: #27232F;
}
.header .icon { width: 150px; position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%);
}
.maxWidth { max-width: 768px; margin: 0 auto;
}
.content { padding: 50px; font-family: "Droid Sans", sans-serif, 微軟正黑體;
}
.content h5 { margin-top: 10px;
}
.content .titleHr { width: 100px; border-bottom: 5px solid;
}
.content h1 { font-size: 40px;
}
.content h1.small_english { font-size: 24px;
}
.content h2 { font-size: 30px;
}
.content h2.small_english { font-size: 16px;
}
.content h3 { font-size: 20px;
}
.content h3.small_english { font-size: 12px;
}
.content .small_english { margin-top: -15px; letter-spacing: 1px;
}
.content .colorChip { display: inline-block; margin-right: 30px;
}
.content .colorChip .color_tag, .content .colorChip .color_block { display: inline-block; vertical-align: middle;
}
.content .colorChip .color_tag { width: 70px;
}
.content .colorChip .color_block { width: 30px; height: 30px; border: 2px solid;
}
.content .color_block_yellow { background-color: #ffb336;
}
.content .color_block_blue { background-color: #27232F;
}
.content .color_block_white { background-color: #f3f7f7;
}
.content .color_block_grey { background-color: #333;
}
.content .button { display: inline-block; padding: 5px 25px; margin-right: 10px; letter-spacing: 2px; font-weight: bold; font-size: 15px; border: 1px solid #333;
}
.content .button.button_blue { background-color: #27232F; color: #f3f7f7; font-weight: 500;
}
.content .button.button_yellow { background-color: #ffb336; color: #27232F;
}
.content_white { background-color: #f3f7f7; color: #333;
}
.content_white .small_english { color: #27232F;
}
.content_white .titleHr { color: #ffb336;
}
.content_white h1, .content_white h2, .content_white h3 { font-weight: bold;
}
.content_white .button { border-color: #333;
}
.content_grey { background-color: #333; color: #f3f7f7;
}
.content_grey .small_english { color: #ffb336;
}
.content_grey .titleHr { color: #ffb336;
}
.content_grey h1, .content_grey h2, .content_grey h3 { font-weight: 500;
}
.content_grey .button { border-color: #f3f7f7; font-weight: 500;
}
.content_grey .button_yellow { font-weight: bold;
}
.content_blue { background-color: #27232F; color: #f3f7f7;
}
.content_blue .small_english { color: #ffb336;
}
.content_blue .titleHr { color: #ffb336;
}
.content_blue h1, .content_blue h2, .content_blue h3 { font-weight: 500;
}
.content_blue .button { border-color: #f3f7f7; font-weight: 500;
}
.content_blue .button_yellow { font-weight: bold;
}
Brand Guideline - Script Codes
Brand Guideline - Script Codes
Home Page Home
Developer Eric
Username ericyericy
Uploaded December 07, 2022
Rating 3
Size 4,033 Kb
Views 10,120
Do you need developer help for Brand Guideline?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Eric (ericyericy) Script Codes
Name
Pen,pineapple,apple
Transition-duration
CSS resume
Vue
Vue add del
V-on
A Pen by Eric
NameCard
Create amazing SEO content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!