-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (51 loc) · 2.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- <meta http-equiv="refresh" content="60"> -->
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="author" content="Meleyotan Oyeleke">
<title>How to use javascript</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script type="text/javascript" src="script/script.js"></script>
<!-- <script>
var x=document.getElementsByTagName("input").innerHTML;
document.getElementById("output").innerHTML="Number of elements: +x.length";
function sayGoodbye(){
alert("Goodbye!")
}
</script> -->
</head>
<body onunload="sayGoodbye()">
<!-- <header>
<div>
<input type="button" value="Our Button" onclick="howdy()"><br>
<div id="our"></div>
</div>
</header> -->
<div id="noine"><h1 id="none">N<span class="orange">OIN</span>E</h1></div>
<form>
<h1 id="title">Sign In</h1>
<br>
<input type="text" onblur="validateName()" id="vali" placeholder="Name" required autofocus title="Full name"><span id="message1"></span>
<input type="text" onblur="validateSurname()" id="space" placeholder="Surname" required title="Surname"><span id="message2"></span>
<input type="email" onblur="validate()" id="long" placeholder="Email address" required title="Email address"><span id="message3"></span>
<input type="password" required placeholder="Password" id="password" title="Password" onblur="validatePass()"><span id="message4"></span><br>
<button id="submit" onclick="Submitted()">Submit</button>
</form>
<div id="log_in"><p>Already have an account?</p><span id="log"><a href="#" id="log_in_link">Log In</a></span></div>
<div id="log_in_with">
<p>Log in with</p><div id="contact_image">
<img src="img/facebook.png" alt="facebook" class="contact_image" id="facebook_image">
<img src="img/twitter.png" alt="twitter" class="contact_image" id="twitter_image">
<img src="img/instagram.png" alt="instagram" class="contact_image" id="instagram_image">
<img src="img/behance.png" alt="behance" class="contact_image" id="behance_image">
<img src="img/pinterest.png" alt="pinterest" class="contact_image" id="pinterest_image">
</div>
</div>
<div>
<h3><span style="color: #ffffff;">brought to you by </span>Meleyotan Oyeleke</h3>
<h1 id="foot">N<span class="orange">OIN</span>E</h1>
</div>
</body>
</html>