-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (72 loc) · 3.27 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<HTML>
<HEAD>
<title>Numerical Analysis Landing Page</title>
<!-- add bootstrap css file -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/main.css">
</HEAD>
<BODY>
<!-- navbar -->
<div class="container">
<nav>
<div class="nav-xbootstrap">
<ul>
<li><a href="#">Home</a></li>
<li><a href="javascript:void(0)">Methods<span class="glyphicon glyphicon-chevron-down iconsize"></span></a>
<ul class="dropdown">
<li><a href="methods/bisectionmethod.html">Bisection Method</a></li>
<li><a href="methods/newtonsmethod.php">Newton's Method</a></li>
<li><a href="methods/fixedpoint.html">Fixed Point Iteration</a></li>
</ul>
</li>
<li><a href="#about">About</a></li>
</ul>
</div>
<div class="nav-bg-xbootstrap">
<div class="navbar-xbootstrap"> <span></span> <span></span> <span></span> </div>
<a href="" class="title-mobile">Numerical Analysis</a>
</div>
</nav>
<div class='content'>
</div>
</div>
<!-- header -->
<header class="header ">
<div class="overlay"></div>
<div class="container">
<div class="description ">
<h1> Numerical Analysis
<p> This website is a tool to help fellow students learn about the key concepts of Numerical Analysis as well as look at implementations of the algorithms.
</p>
<a href="methods/bisectionmethod.html" class="btn btn-outline-secondary btn-lg">Start</a>
</h1>
</div>
</div>
</header>
<div class="about" id="about">
<div class="overlay"></div>
<div class="container">
<h1 class="text-center">About Me</h1>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12">
<img src="images/aboutme.jpg" class="img-fluid">
<span class="text-justify">Developer</span>
</div>
<div class="col-lg-8 col-md-8 col-sm-12 desc">
<h3>Austin Wimberley</h3>
<p>
I have a thirst for learning new technologies and solving problems using scalable and efficient designs. I am almost finished in getting a Bachelor's degree in Computer Science and a minor in Mathematics and am looking to continue my growth as a developer outside of my college experience.
</p>
</div>
</div>
</div>
</div>
<!-- jQuery CDN -->
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<!-- Bootstrap Js CDN -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</BODY>
</HTML>