-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
107 lines (99 loc) · 5.82 KB
/
home.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en" ng-app="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="My Website.">
<meta name="author" content="Chris Parsons">
<title>Chris Parsons WebSite</title>
<link rel="icon" href="/src/imgs/mankey.ico">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href='//fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="/src/css/cover.css" rel="stylesheet">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"><\/script>')</script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<link rel="stylesheet" href="/src/css/mycarousel.css">
<link rel="stylesheet" href="/src/css/mycss.css">
<!--<link rel="stylesheet" href="/MyWebPage/src/css/mycarousel.css">-->
<!--<link rel="stylesheet" href="/MyWebPage/src/css/mycss.css">-->
</head>
<body>
<div>
<div ng-include="'navBar.html'"></div>
</div>
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img class="first-slide" style='background:url("http://www.seleniumhq.org/images/big-logo.png"); background-repeat:no-repeat; background-position:-50px -50px; background-size: 380px 380px; opacity: 0.2' alt="First slide">
<div class="container">
<div class="carousel-caption">
<h1 class="my-header2">Tools/Frameworks</h1>
<p>This is a section on the tools and frameworks that I've used so far. This will include tools to test web applications, desktop applications, APIs and others, and include examples where appropriate. Currently, it just contains a bit of code.</p>
<p><a class="btn btn-lg btn-default" href="tools.html" role="button">View details »</a></p>
</div>
</div>
</div>
<div class="item">
<img class="second-slide" style='background:url("/src/imgs/bootstrap.png"); background-repeat:no-repeat; background-position:-50px -50px; background-size: 380px 380px; opacity: 0.2' alt="Second slide">
<div class="container">
<div class="carousel-caption">
<h1 class="my-header2">This Website</h1>
<p>This is just a section briefly explaining why this website was developed, and how. A lot of the concepts tested during unit testing of the UI have helped contribute, as well as a bit of help from bootstrap and various Angular tutorials.</p>
<p><a class="btn btn-lg btn-default" href="this_site.html" role="button">View details »</a></p>
</div>
</div>
</div>
<div class="item">
<img class="third-slide" style='background:url("/src/imgs/jenkins.png"); background-repeat:no-repeat; background-position:-50px -50px; background-size: 380px 380px; opacity: 0.2'>
<div class="container">
<div class="carousel-caption">
<h1 class="my-header2">Other Tools</h1>
<p>A list, with descriptions and examples, of some of the other supplementary tools I've used to complete tasks. These aren't the test frameworks, just the enabling tools.</p>
<p><a class="btn btn-lg btn-default" href="other_tools.html" role="button">View details »</a></p>
</div>
</div>
</div>
<div class="item">
<img class="fourth-slide" style='background:url("/src/imgs/Android-Icon.png"); background-repeat:no-repeat; background-position:-50px -50px; background-size: 380px 380px; opacity: 0.2'>
<div class="container">
<div class="carousel-caption">
<h1 class="my-header2">Android</h1>
<p>A bit about my Android project, which includes the build process of an application developed in Android Studio, built with TeamCity and Gradle and then tested by Appium.</p>
<p><a class="btn btn-lg btn-default" href="android.html" role="button">View details »</a></p>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<footer>
<hr>
<br />
<div>
<div ng-include="'footer.html'"></div>
</div>
</footer>
</body>
</html>