Skip to content

Commit e268b9d

Browse files
Update index.html
1 parent 4f5d8af commit e268b9d

File tree

2 files changed

+65
-1
lines changed

2 files changed

+65
-1
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,16 @@
1+
<<<<<<< HEAD
12
# Corsera-test
23
test of my first repository
4+
=======
5+
# jQuery datepicker
6+
This is the repository for **jQuery datepicker**. For this repository we need three different jQuery files.
7+
1. [jQuery.js](https://code.jquery.com/jquery-2.2.4.js)
8+
2. [jQuery.ui.css](https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css)
9+
3. [jQuery.ui.js](https://code.jquery.com/ui/1.12.1/jquery-ui.js)
10+
---
11+
This repository contains the **jQuery** _function_ for change the _year_, _month_, _date format_ and _the first day of the week_, which in this case is set to Monday.
12+
Also, after selecting a date, the selection of previous dates is disabled.
13+
##
14+
[PREVIEW](https://full-stack-web-developer-and-designer.github.io/jQuery-datepicker/)
15+
16+
>>>>>>> 2aeb6a3 (Update README file)

index.html

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,42 @@
3535
});
3636
});
3737
</script>
38-
<style>main{width: 70%;margin: 100px auto;padding: 1px 50px 50px;background-color:#AAA;}h1{color:#FFF;text-align:center;}input{margin: 0 15px 0 0;}</style>
38+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
39+
<style>
40+
main {
41+
width: 70%;margin: 100px auto;
42+
padding: 1px 50px 50px;background-color:#AAA;
43+
}
44+
h1{
45+
color:#FFF;
46+
text-align:center;
47+
}
48+
input{
49+
margin: 0 15px 0 0;
50+
}
51+
#footer {
52+
background-color: #808080;
53+
/* position: absolute;
54+
bottom: 0;*/
55+
width: 100%;
56+
}
57+
.footer-social {
58+
text-align: center;
59+
}
60+
a {
61+
text-decoration: none;
62+
}
63+
.footer-social a:link .footer-icon,
64+
.footer-social a:visited .footer-icon {
65+
color: #FFF;
66+
font-size: 2em;
67+
padding: 10px;
68+
}
69+
.footer-social a:hover .footer-icon {
70+
color: #808080;
71+
background-color: #FFF;
72+
}
73+
</style>
3974
</head>
4075
<body>
4176
<main>
@@ -50,5 +85,20 @@ <h1>Make your reservation in the time!</h1>
5085
</select>
5186
<input type="submit" value="Search">
5287
</main>
88+
<div id="footer">
89+
<section class="footer-social">
90+
<a href="https://www.facebook.com/mirnes.glamocic.5/" target="_blank">
91+
<i class="footer-icon fab fa-facebook"></i>
92+
</a>
93+
<a href="https://www.linkedin.com/in/mirnes-glamocic/" target="_blank">
94+
<i class="footer-icon fab fa-linkedin"></i>
95+
</a>
96+
<a href="https://github.com/Full-Stack-Web-Developer-and-Designer/" target="_blank"><i class="footer-icon fab fa-github"></i>
97+
</a>
98+
<a href="https://mirnesglamocic.com/" target="_blank">
99+
<i class="footer-icon fab fa-dribbble"></i>
100+
</a>
101+
</section>
102+
</div><!-- end #footer -->
53103
</body>
54104
</html>

0 commit comments

Comments
 (0)