0% found this document useful (0 votes)
89 views6 pages

Universidad Cristiana de Honduras (Ucrish)

This document is a template for a Netbeans project that includes the basic structure and elements for a website. It includes the HTML boilerplate with meta tags and links to style sheets. It has a navigation bar, jumbotron, rows for content sections, and footer. It also includes scripts to link jQuery and for Google Analytics. The template provides the foundation for developing a full website project in Netbeans.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
89 views6 pages

Universidad Cristiana de Honduras (Ucrish)

This document is a template for a Netbeans project that includes the basic structure and elements for a website. It includes the HTML boilerplate with meta tags and links to style sheets. It has a navigation bar, jumbotron, rows for content sections, and footer. It also includes scripts to link jQuery and for Google Analytics. The template provides the foundation for developing a full website project in Netbeans.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

UNIVERSIDAD CRISTIANA DE HONDURAS

(UCRISH)

Asignatura: Seminario de Software

Catedrático: Ing. Héctor Talavera

Alumna: Fanny Julissa Santos Cruz

Tema: Plantilla Netsbeans

Lugar y Fecha: Pedro Sula Junio 2020


Codigo

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

<title></title>

<meta name="description" content="">

<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="apple-touch-icon" href="apple-touch-icon.png">

<link rel="stylesheet" href="css/bootstrap.min.css">

<style>

body {

background-color: #F3C;

padding-top: 100px;

padding-bottom: 20px;

</style>

<link rel="stylesheet" href="css/bootstrap-theme.min.css">

<link rel="stylesheet" href="css/main.css">

<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>

</head>

<body>

<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>

<![endif]-->

<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">

<div class="container">

<div class="navbar-header">

<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-


target="#navbar" aria-expanded="false" aria-controls="navbar">

<span class="sr-only">Toggle navigation</span>

<span class="icon-bar"></span>

<span class="icon-bar"></span>

<span class="icon-bar"></span>

</button>

<a class="navbar-brand" href="#">Project name</a>

</div>

<div id="navbar" class="navbar-collapse collapse">

<form class="navbar-form navbar-right" role="form">

<div class="form-group">

<input type="text" placeholder="Email" class="form-control">

</div>

<div class="form-group">

<input type="password" placeholder="Password" class="form-control">

</div>

<button type="submit" class="btn btn-success">Sign in</button>

</form>

</div><!--/.navbar-collapse -->

</div>

</nav>

<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">

<div class="container">

<h1>Fanny</h1>

<div id="apDiv1"><img src=" C:/Users/Reina/Desktop/images.jpg"width="500"


height="300" /></div>

<p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more &raquo;</a></p>

</div>

</div>

<div class="container">

<!-- Example row of columns -->

<div class="row">

<div class="col-md-4">

<h2>Mascarilla</h2>

<div id="apDiv1"><img src=" C:/Users/Reina/Desktop/mascarilla.jpg"width="300"


height="300" /></div>

<p><a class="btn btn-default" href="#" role="button">View details &raquo;</a></p>

</div>

<div class="col-md-4">

<h2>Inyecciones</h2>

<div id="apDiv1"><img src=" C:/Users/Reina/Desktop/inyeccion.jpg"width="300"


height="300" /></div>

</div>
<div class="col-md-4">

</div>

</div>

<hr>

<footer>

<p>&copy; Company 2015</p>

</footer>

</div> <!-- /container --> <script


src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>

<script>window.jQuery || document.write('<script src="js/vendor/jquery-


1.11.2.min.js"><\/script>')</script>

<script src="js/vendor/bootstrap.min.js"></script>

<script src="js/main.js"></script>

<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->

<script>

(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=

function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;

e=o.createElement(i);r=o.getElementsByTagName(i)[0];

e.src='//www.google-analytics.com/analytics.js';

r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));

ga('create','UA-XXXXX-X','auto');ga('send','pageview');

</script>

</body>

</html>

You might also like