-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
92 lines (87 loc) · 3.63 KB
/
about.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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="src/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="src/css/index.css">
<title>About Us</title>
<style>
button {
font-size: 12 px;
font-weight: 200;
}
</style>
</head>
<body>
<nav>
<ul class="topnav" id="mobileMenu">
<li><a href="index.html">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#contact">Contact</a></li>
<li class="topnav-right"><a href="login.html">Sign Up</a></li>
<li class="topnav-right"><a href="login.html">Sign In</a></li>
<li class="dropdown"><a href="javascript:void(0);" onclick="displayMenu()">☰</a></li>
</ul>
</nav>
<h1>About Me</h1>
<p>I am Alex Valdez and a programmer in various differnt lanugaues including HTML5, Javascript, Python 3, and more. Programming is my <b>passion</b> and is something I love even with all the challanges.</p>
<h4>I love my dog, Zues, with <b>ALL</b> my heart and here is a picture of him.</h4>
<img src="src/img/zuesBirthday.JPG" alt="Zues on his birthday." width="81.1" height="6.1">
<table cellpadding="1" cellspacing="1">
<tr>
<!-- <td><a href="htmlpage.html">Example</a></td> -->
<td><button><a href="https://github.com/a1exsDev">My Github</a></button></td>
<td><button><a href="mailto:[email protected]">Email Me</a></button></td>
<td><button><a href="https://account.xbox.com/en-us/profile?gamertag=FlashFast6879">Xbox Account</a></button></td>
</tr>
</table>
<footer class="footer-1">
<div class="row">
<div class="col-3 mobileFooter">
<h1>Group</h1>
<ul>
<li>About</li>
<li>Blogs</li>
<li>Careers</li>
</ul>
</div>
<div class="col-3 mobileFooter">
<h1>Websites</h1>
<ul>
<li>Site Map</li>
<li>My Friend's</li>
<li>My favorite one</li>
</ul>
</div>
<div class="col-3 mobileFooter">
<h1>Learn More</h1>
<ul>
<li>Developers</li>
<li>Designers</li>
<li>Gamers</li>
</ul>
</div>
<div class="col-3 mobileFooter">
<h1>FOOD</h1>
<ul>
<li>STAKE</li>
<li>Dino Nuggies</li>
<li>CHEESE STICKS</li>
</ul>
</div>
</div>
</footer>
<script>
var mobileMenu = document.getElementById('mobileMenu');
function displayMenu() {
if (mobileMenu.className === "topnav") {
mobileMenu.className += " mobile";
<!-- changing topnav to topnav mobile -->
} else {
mobileMenu.className = "topnav";
}
}
</script>
</body>
</html>