-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsamplehtml.html
115 lines (100 loc) · 5.99 KB
/
samplehtml.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
108
109
110
111
112
113
114
115
<!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>
<!-- 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="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="//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>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img class="first-slide" style='background:url("//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="#" role="button">View details »</a></p>
</div>
</div>
</div>
<div class="item">
<img class="second-slide" style='background:url("//chrisp1985.github.io/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="#" 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><!-- /.carousel -->
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<!--<div class="container marketing">-->
<!--<!– START THE FEATURETTES –>-->
<!--<div class="row featurette">-->
<!--<div class="col-md-7">-->
<!--<h2 class="featurette-heading">Tools/Frameworks</h2>-->
<!--<p class="lead">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>-->
<!--</div>-->
<!--<div class="col-md-5">-->
<!--<img class="featurette-image img-responsive center-block" src="//pngimg.com/upload/wrench_PNG1108.png" alt="Generic placeholder image">-->
<!--</div>-->
<!--</div>-->
<!--<hr class="featurette-divider">-->
<!--<div class="row featurette">-->
<!--<div class="col-md-7 col-md-push-5">-->
<!--<h2 class="featurette-heading">This Website</h2>-->
<!--<p class="lead">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>-->
<!--</div>-->
<!--<div class="col-md-5 col-md-pull-7">-->
<!--<img class="featurette-image img-responsive center-block" src="//www.seleniumhq.org/images/big-logo.png" alt="Generic placeholder image">-->
<!--</div>-->
<!--</div>-->
<!--<hr class="featurette-divider">-->
<!--</div><!– /.container –>-->
<footer>
<div>
<div ng-include="'footer.html'"></div>
</div>
</footer>
</body>
</html>