-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (25 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Which Day of the Week?</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class = "inputs">
<input type="text" required placeholder="Month" class="month border">
<input type="text" required placeholder="Day" class="day border" >
<input type="text" required placeholder="Year" class="year border">
</div>
<button class = "btn1">Click</button>
<div class = "weekday"></div>
<div class="container">
<button class="btn">
<a href="https://www.twitter.com/LevwTech" target="blank" class="fa fa-twitter" style="font-size:35px;"></a>
</button>
<script src ="script.js"></script>
</body>
</html>