-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (87 loc) · 2.49 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Default Starter</title>
<!-- Normalize Css-->
<link rel="stylesheet" href="normalize.css" />
<!-- Typography -->
<link rel="stylesheet" href="typography.css" />
<!-- Own style file -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Hello world</h1>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Eius, officia
laboriosam beatae id repellendus nam pariatur illum esse tempora
provident?
</p>
<h2>Hello world</h2>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Eius, officia
laboriosam beatae id repellendus nam pariatur illum esse tempora
provident?
</p>
</body>
<h1>hello world</h1>
<h2>hello world</h2>
<h3>hello world</h3>
<h4>hello world</h4>
<h5>hello world</h5>
<a href="#">Link example</a>
<ul>
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
</ul>
<img src="freelancing.jpg" alt="freelancing" class="img" />
<br /><br />
<button class="btn" type="button">regular button</button>
<br /><br />
<button class="btn btn-hipster" type="button">hipster button</button>
<br /><br />
<div class="alert alert-danger">Hello from dander</div>
<div class="alert alert-success">Hello from success</div>
<form class="form">
<h4>contact form</h4>
<div class="form-row">
<label for="name" class="form-label">Name</label>
<input
type="text"
name="name"
id="name"
placeholder="hello there"
class="form-input"
/>
</div>
<div class="form-row">
<label for="number" class="form-label">Number</label>
<input type="number" name="number" id="number" class="form-input" />
</div>
<div class="form-row">
<label for="email" class="form-label">Email</label>
<input
type="email"
name="email"
id="email"
placeholder="hello there"
class="form-input"
/>
</div>
<div class="form-row">
<label for="textarea" class="form-label">Textarea</label>
<textarea class="form-textarea">
Default Value
</textarea>
</div>
<button type="submit" class="btn btn-block">submit</button>
</form>
<div class="loading"></div>
<br /><br />
<div class="title">
<h2>section title</h2>
<div class="title-underline"></div>
</div>
</html>