forked from Guzman09/iFrame-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (96 loc) · 4.57 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
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
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="main.css">
<!-- fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" class="page-scroll" href="javascript:$.scrollTo('#home',800);">Logo</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li class="page-scroll"><a href="javascript:$.scrollTo('#section2',800);">About</a></li>
<li class="page-scroll"><a href="javascript:$.scrollTo('#section3',800);">Test</a></li>
<li class="page-scroll"><a href="javascript:$.scrollTo('#section4',800);">Contact</a></li>
</ul>
</div>
</div>
</nav>
</header>
<div class="jumbotron" id="home">
<div class="container" id="jumbo">
<h1>Welcome to my website!</h1>
<p>made by Guzman Gonzalez</p>
<p><a class="btn btn-primary btn-lg" href="https://www.linkedin.com/in/guzman-gonzalez-doglio-55ab7a9b?trk=nav_responsive_tab_profile_pic" role="button">Learn more</a></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-body">
<p class="marquee"> Testing iFrame HTML tag</p>
</div>
</div>
<div class="well well-lg" id="section2">
<div class="container" >
<h1 class="text-center">About</h1>
<p class="text-center">My name is Guzman Gonzalez, I'm currently a graphic designer at Norwalk Community College at Connecticut, US. I started self teaching front-end coding, because I was attracted by responsive websites made with bootstrap. Since then, I have been learning with videos, websites and books all about Html, CSS, Javascript, jQuery and frameworks like Bootstrap.</p>
</div>
</div>
<!-- Skills -->
<div class="container" id="section3">
<h1 class="text-center">Test</h1>
<h2 class="text-center">iFrame</h2>
<div class="container" class="col-lg-12">
<iframe src="Freelancer%20Template-Codexduo/" height="600px" width="100%" style="border:none;"></iframe>
</div>
<div>
<div class="" class="col-lg-6" id="wb1">
<iframe src="Freelancer%20Template-Codexduo/" height="667px" width="375px" style="border:none;"></iframe>
</div>
<div class="" class="col-lg-6" id="wb2">
<iframe src="Freelancer%20Template-Codexduo/index.html" height="1024px" width="768px" style="border:none;"></iframe>
</div>
</div>
</div>
<div class="well well-lg" id="section4">
<div class="row">
<div class="col-sm-12">
<div class="container">
<h2 class="text-center">Contact</h2>
</div>
</div>
<div class="container" id="logos">
<div class="col-sm-6">
<span class="glyphicon glyphicon-earphone logo"></span>
<div id="phoneNumber"> (203) 818-5975</div>
</div>
<div class="col-sm-6">
<span class="glyphicon glyphicon-envelope logo2"></span>
<div id="mailAddress">[email protected]</div>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.scrollTo.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>