-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser.html
155 lines (143 loc) · 5.62 KB
/
browser.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>unstyled</title>
<style>
.container {
max-width: 700px;
margin: auto;
}
</style>
</head>
<body>
<div class="container">
<!-- Button -->
<div>
<button>Build</button>
<button disabled>Build</button>
<button class="subtleButton">Build</button>
<button disabled class="subtleButton">Build</button>
<!-- <a class="buttonShape" href="#">Continue Reading</a> -->
</div>
<hr />
<!-- Select -->
<select name="beverage">
<option value="tea">Tea</option>
<option value="coffee">Coffee</option>
<option value="water">Water</option>
</select>
<hr />
<!-- Label + Input text -->
<div>
<label for="email">email</label>
<input placeholder="[email protected]" autocomplete="email" id="email" type="text" />
</div>
<hr />
<!-- Blockquote -->
<blockquote>I was ready all along!</blockquote>
<hr />
<!-- Code -->
<pre><code>function f(){
const x = 0
}</code></pre>
<!-- Hr -->
<hr />
<!-- Textarea -->
<div>
<label for="abc">note</label>
<textarea name="abc" id="abc" cols="30" rows="5"></textarea>
</div>
<hr />
<!-- Table -->
<table>
<thead>
<tr>
<th>Name</th>
<th>Race</th>
<th>Class</th>
<th>Level</th>
</tr>
</thead>
<tbody>
<tr>
<td>Laddyvia</td>
<td>Human</td>
<td>Warrior</td>
<td>60</td>
</tr>
<tr>
<td>Nayme</td>
<td>Dwarf</td>
<td>Priest</td>
<td>60</td>
</tr>
<tr>
<td>Cerise</td>
<td>Human</td>
<td>Warlock</td>
<td>52</td>
</tr>
<tr>
<td>Parcspirou</td>
<td>Human</td>
<td>Warrior</td>
<td>60</td>
</tr>
</tbody>
</table>
<hr />
<div>
<!-- Link -->
<a href="https://antoineweber.com">Read more</a>
</div>
<hr />
<div>
<h1>Typography</h1>
<div class="secondaryText">Published 3 hours ago by Antoine Weber</div>
<p>
I mainly practice on Adobe Illustrator, the leading vector-drawing software,
where I can draw anything, from simple shapes to complex compositions.
</p>
<p>
I like Illustrator because I can interact and play with the graphic design
primitives (shapes, curves, colors, fonts..) in an intuitive and easy way. I
then try combinations and iterate. This gives way to infinite possibilities.
</p>
<p>
As of now, I know the main shortcuts and I understand the main Illustrator
tools. But I'm still far from mastering it, and more importantly, what to do
with it once I master it.
</p>
<h3>Design interest</h3>
<p>
I want to be better at design because I need this skill for crafting attractive
user-interfaces (UI), for websites or applications. I do also enjoy creating
artworks and sharing them (as most people).
</p>
<p>
After getting familiar with the basics, I quickly got tangible results: In
real-life, when looking at a designed item, such as a logo, a street sign, an
artwork, or any writing, I can see more things, I'm more interested, I interpret
details and I may guess the designer intent.
</p>
<h3>Design Practice</h3>
<p>
I mainly practice on Adobe Illustrator, the leading vector-drawing software,
where I can draw anything, from simple shapes to complex compositions.
</p>
<p>
I like Illustrator because I can interact and play with the graphic design
primitives (shapes, curves, colors, fonts..) in an intuitive and easy way. I
then try combinations and iterate. This gives way to infinite possibilities.
</p>
<p>
As of now, I know the main shortcuts and I understand the main Illustrator
tools. But I'm still far from mastering it, and more importantly, what to do
with it once I master it.
</p>
</div>
</div>
</body>
</html>