-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (92 loc) · 4.31 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
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>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="./css/main.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<title>ASSIGNMENT : JS</title>
</head>
<body class="bg-dark text-white">
<p></p>
<header>
<div class="container">
<div class="btn-group">
<button type="button" class="btn btn-primary p-3">Home</button>
<button type="button" class="btn btn-primary p-3">About</button>
<button type="button" class="btn btn-primary p-3">Resume</button>
<button type="button" class="btn btn-primary p-3">Contact</button>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class=".col-12">
<div class="card bg-dark text-white">
<img class="card-img" src="./img/slider.jpg" alt="Card image">
<div class="card-img-overlay">
<h1 class="card-title" id="headerTitlebox"></h1>
<p class="card-text" id="headerTextBox">Natus!</p>
</div>
</div>
</div>
</div>
<div class="row ">
<div class="col-md-3" >
<aside class="m-0 p-3">
<form action="" id="my-form" >
<div class="msg"></div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label " >Your Name</label>
<input type="text" name="fname" class="form-control bg-secondary text-white" id="name" >
</div>
<div class="mb-3">
<label for="exampleInputPassword1 " class="form-label">Your Email</label>
<input type="email" class="form-control bg-secondary text-white" id="email">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<input type="submit" value="Submit" class="btn btn-primary bg-secondary text-white">
</form>
</aside>
</div>
<div class="col-md-9" >
<main class="m-0 p-3">
<article>
<img src="./img/ehsan.jpg" alt="Ehsan Bazaei" title="ehsan" >
<h3>Painting Exhibition </h3>
<p>
Kunstschilder: <span style="font-style: italic;"> Ehsan Bazaei </span>
</p>
<p>
Van 12 Oktober tot 12 November (werkdagen)<br><br>
<i class="Tiny material-icons">access_alarm</i>
Van 9.00 uur <br>
<i class="Tiny material-icons">access_alarm</i>
tot 16.00 uur.<br><br>
<button id="moreInfo" class="btn btn-primary bg-secondary text-white"></button>
<p id="boxMoreDisplay"></p>
</p>
</article>
</main>
</div>
</div>
<div class="row margin5 roloverpic" id="photogallery" >
</div>
</div>
<footer>
Copyright © 2021 ASSIGNMENT 3
</footer>
<!-- Option 1: Script JS -->
<script src="./script/script.js"></script>
<!-- Option 2: Bootstrap Bundle with Popper -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>