-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercise5.html
125 lines (106 loc) · 5.33 KB
/
exercise5.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
<!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">
<meta name="author" content="Tuomas Talkio">
<meta name="description" content="This is independent exercise 5 for HAMK static webpages module.">
<title>Exercise 5</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link href="CSS/custom2.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container-fluid">
<div class="row" style="margin-bottom: 5px;">
<nav class="navbar navbar-expand-sm navbar-dark" style="background-color: brown;">
<a class="navbar-brand" href="index.html">Home</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="exercise4.html">Flex Box</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutus.html">About Us</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<div class="row">
<div class="col-sm-3" style="background-color: antiquewhite;">
<figure class="figure">
<img src="assets/images/Yellow_Flowers.png" class="figure-img img-fluid rounded" alt="Yellow Flowers">
<figcaption class="figure-caption">Some yellow flowers.</figcaption>
</figure>
</div>
<div class="col-sm-3" style="background-color: coral;">
<h1>Desktops are more reliable than laptops</h1>
</div>
<div class="col-sm-6" style="background-color: rgb(250, 238, 238);">
<p class="alert alert-primary" role="alert">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Accusantium ducimus reprehenderit nulla modi, natus praesentium quo a quod velit aliquid cum incidunt beatae. Ad adipisci illo ipsa corrupti iusto numquam.
</p>
<form>
<div class="row mb-3">
<label for="inputEmail3" class="col-sm-2 col-form-label">Username or Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3">
</div>
</div>
<div class="row mb-3">
<label for="inputPassword3" class="col-sm-2 col-form-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword3">
</div>
</div>
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-2 pt-0">TV Channels</legend>
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="gridChannels" id="gridChannels1" value="option1" checked>
<label class="form-check-label" for="gridChannels1">
Yle
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="gridChannels" id="gridChannels2" value="option2">
<label class="form-check-label" for="gridChannels2">
MTV3
</label>
</div>
<div class="form-check disabled">
<input class="form-check-input" type="radio" name="gridChannels" id="gridChannels3" value="option3" disabled>
<label class="form-check-label" for="gridChannels3">
Midnight Channel
</label>
</div>
</div>
</fieldset>
<div class="row mb-3">
<div class="col-sm-10 offset-sm-2">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck1">
<label class="form-check-label" for="gridCheck1">
Subscribe to our news letter
</label>
</div>
</div>
</div>
<button type="submit" class="btn btn-primary">Sign in</button>
</form>
</div>
</div>
<div class="row" style="background-color: darkorchid; color:white; margin-top: 5px; text-align: center; position: fixed; bottom: 0; width: 100%;">
<h2>Tuomas Talkio</h2>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
</body>
</html>