-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjuabout.html
More file actions
107 lines (90 loc) · 2.74 KB
/
juabout.html
File metadata and controls
107 lines (90 loc) · 2.74 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>About US | Just Us</title>
<style>
section {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50px);
max-width: 350px;
width: 100%;
background: #fff;
border-radius: 5px;
}
section h2 {
display: block;
position: top;
text-align: center;
max-width: 40em;
height: 50px;
}
.juabout {
border: 0;
margin-top: 15x;
padding: 10px;
width: 100%;
background: blueviolet;
color: #332902;
text-transform: uppercase;
letter-spacing: 5px;
font-weight: bold;
border-radius: 25px;
cursor: pointer;
}
footer {
display: block;
text-align: center;
padding: 14px 16px;
position: absolute;
right: 0;
bottom: 0;
left: 0;
}
</style>
</head>
<body>
<!-- Side navigation -->
<div class="sidenav">
<a href="index.html">Home</a>
<a href="juandrewfam.html">Andrew's Family</a>
<a href="juruthfam.html">Ruth's Family</a>
<a href="lifegoals.html">Goals</a>
</div>
<div class="main">
<div class="siteheader">
<div class="logocontainer">
<h1>Just<span>US</span></h1>
</div>
</div>
<section>
<h2>About Just US</h2>
<hr>
<button onclick="myFuction()" class="juabout">About US</button>
<p id="ver"></p>
<p id="dev"></p>
<p id="cont"></p>
</section>
<hr>
<footer>
<ul>
<li><a href="juabout.html ">About Us </li>
</ul>
</footer>
<script type = "text/javascript">
function myFuction() {
var version = "1";
var developer = "Andrew Peterson";
var contact = "apeterson65@tooeletech.edu";
var text3 = "version: "+ version + " Developer: " + developer;
document.getElementById("ver").innerHTML = "Version: " + version;
document.getElementById("dev").innerHTML = "Developer: " + developer;
document.getElementById("cont").innerHTML = "Contact: " + contact;
}
</script>
</body>
</html>