-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomaye.html
More file actions
35 lines (25 loc) · 834 Bytes
/
Copy pathomaye.html
File metadata and controls
35 lines (25 loc) · 834 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script ="javascript">
let myName = "Ejeh Jemimah Omaye";
let Email_Address = "jemimahomaye@gmail.com" ;
let Language = "Javascript" ;
let Biostack = "Genomics" ;
let Slack_Username = "@omaye" ;
/*console.log("Name : " + myName) ;
console.log("Email Address : " + Email_Address) ;
console.log("Language : " + Language) ;
console.log("Biostack : " + Biostack) ;
console.log("Username : " + Slack_Username) ; */
document.write ("Name : " + myName + "<br>") ;
document.write ("Email Address : " + Email_Address + "<br>" ) ;
document.write ("Language : " + Language + "<br>") ;
document.write ("Biostack : " + Biostack + "<br>") ;
document.write ("Username : " + Slack_Username + "<br>") ;
</script>
</body>
</html>