-
Notifications
You must be signed in to change notification settings - Fork 7
/
english.html
134 lines (117 loc) · 5.32 KB
/
english.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/vendor/reseter.css">
<link rel="stylesheet" href="assets/layout/layout-large.css">
<link rel="stylesheet" href="assets/layout/layout-medium.css">
<link rel="stylesheet" href="assets/layout/layout-small.css">
<link rel="stylesheet" href="assets/components.css">
<link rel="stylesheet" href="assets/typography.css">
<title>SITCON Branding</title>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-34467841-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header>
<h1 class="header-logo">
<span class="left">
<img src="assets/logos/withname.svg" alt="SITCON">
</span>
<span class="right">Brand Guidelines</span>
</h1>
<ul>
<li><a href="index.html">中文</a></li>
<li><a href="english.html">English</a></li>
</ul>
</header>
<main class="grid">
<section class="logo-block">
<img src="assets/logos/withname.svg" alt="SITCON Logo">
<div class="text-block">
<h2>Our Logo</h2>
<p>
Logo of SITCON is provided with version with name and without name for download.
Please follow the term of use: you should not apply any modification include but not limited to deformation,
reformation, recolour and special effect, under any condition.
</p>
<a href="assets/logos/SITCON-Logo.ai" download class="button">Get AI file</a>
</div>
</section>
<section class="logo-usage">
<div class="title text-block">
<h2>Standard of logo usage</h2>
</div>
<section class="background">
<div class="text-block">
<h3>Background</h3>
<p>
Please use the standard green logo for white or light colour background, and white for dark colour background.
You may click the photo to download svg file, or change path to download png file.
</p>
</div>
<div class="icon-images">
<a href="assets/logos/withname.svg" download>
<img src="assets/logos/withname.svg" alt="SITCON Logo with name">
</a>
<a href="assets/logos/withname-white.svg" download style="background-color: #000">
<img src="assets/logos/withname-white.svg" alt="SITCON Logo with name (white)">
</a>
<a href="assets/logos/logo.svg" download>
<img src="assets/logos/logo.svg" alt="SITCON Logo">
</a>
<a href="assets/logos/logo-white.svg" download style="background-color: #000">
<img src="assets/logos/logo-white.svg" alt="SITCON Logo (white)">
</a>
</div>
</section>
<section class="standard-color">
<div class="text-block">
<h3>Colour Standard</h3>
</div>
<div class="color-cards">
<div class="color-card" style="background-color: #77B55A">
<div class="name">SITCON Green</div>
<div class="code">
#77B55A<br>
CMYK 54 0 76 11<br>
PANTONE P 151-14 C
</div>
</div>
<div class="color-card" style="background-color: #FFF">
<div class="name">White</div>
<div class="code">
#000000<br>
CMYK 0 0 0 0
</div>
</div>
</div>
</section>
</section>
<section class="write-style">
<div class="text-block description">
<h2>Way of notation</h2>
<dl>
<div>
<dt><em>Students' Information Technology Conference</em></dt>
<dd>
The full title in English, you may use <abbr title="Students' Information Technology Conference">SITCON</abbr> with all letters in uppercase as short form.
</dd>
</div>
</dl>
</div>
</section>
</main>
</body>
</html>