HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URL's added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using it's URL and the proper URL extention.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<!-- Inicio de la página web portafolio jbeta58 -->
<!-- Atributos en body para característica Scrollspy -->
<body data-spy="scroll" data-target="#menu1" data-offset="70">
<!-- Barra de navegación -->
<nav class="navbar navbar-expand-md fixed-top navbar-dark bg-secondary">
<div class="container">
<!-- Logo de la barra de navegación -->
<a class="navbar-brand" href="#"><b>@jbeta58</b></a>
<!-- Fin Logo de la barra de navegación -->
<!-- Botón para colapsar barra de navegación -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#menu1" aria-controls="menu1" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Botón para colapsar barra de navegación -->
<!-- Botones de navegación -->
<div class="collapse navbar-collapse" id="menu1">
<div class="nav navbar-nav ml-auto mr-auto text-center">
<a class="nav-link btn btn-secondary mx-2 my-1" role="button" href="#About">About</a>
<a class="nav-link btn btn-secondary mx-2 my-1" role="button" href="#Projects">Projects</a>
<a class="nav-link btn btn-secondary mx-2 my-1" role="button" href="#Contact">Contact</a>
</div>
<!-- Fin botones de navegación -->
<!-- Botones de Redes Sociales Superiores -->
<div class="d-flex flex-row justify-content-center">
<a class="btn btn-social-icon btn-twitter" href="https://twitter.com/jbeta58" target="_blank">
<span class="fa fa-twitter-square fa-2x"></span>
</a>
<a class="btn btn-social-icon btn-facebook" href="https://facebook.com/jbeta58" target="_blank">
<span class="fa fa-facebook-square fa-2x"></span>
</a>
<a class="btn btn-social-icon btn-linkedin" href="https://linkedin.com/in/jbeta58" target="_blank">
<span class="fa fa-linkedin-square fa-2x"></span>
</a>
<a class="btn btn-social-icon btn-youtube" href="https://youtube.com/jbeta58" target="_blank">
<span class="fa fa-youtube-square fa-2x"></span>
</a>
</div>
<!-- Fin de botones de Redes Sociales Superiores -->
</div>
</div>
</nav>
<!-- Fin de la barra de navegación -->
<!-- Sección About -->
<div id="About" class="bg-inicio mt-5 d-flex flex-row justify-content-end align-items-center">
<!-- El siguiente div desaparece cuando se cambia de tamaño md hacia abajo -->
<div class="col-6 border text-right mr-5 p-4 bg-white rounded bg-opaco d-none d-md-block">
<h1><strong>Juan Sebastián Betancourt Tabares</strong></h1>
<h4>Electronic Engineer / MBA & Finance /</h4>
<h4>Aspiring Web Developer</h4>
<hr>
<p class="text-justify">I have nine years of professional experience implementing team-based projects and improvements in operational, administrative and financial processes in construction companies.</p>
<p class="text-justify">I'm also studying a Data Analysis Specialization in Coursera.org and self-learning Web Development (HTML, CSS, JavaScript, Ruby on Rails, among others).</p>
</div>
</div>
<!-- El siguiente div aparece cuando se cambia de tamaño md hacia abajo -->
<div class="container-fluid text-center mr-5 p-4 bg-white rounded bg-opaco d-md-none">
<h1><strong>Juan Sebastián Betancourt Tabares</strong></h1>
<h4>Electronic Engineer /</h4>
<h4>MBA & Finance /</h4>
<h4>Aspiring Web Developer</h4>
<hr>
<p class="text-justify">I have nine years of professional experience implementing team-based projects and improvements in operational, administrative and financial processes in construction companies.</p>
<p class="text-justify">I'm also studying a Data Analysis Specialization in Coursera.org and self-learning Web Development (HTML, CSS, JavaScript, Ruby on Rails, among others).</p>
</div>
<!-- Fin de sección About -->
<!-- Sección Projects -->
<div id="Projects" class="container-fluid bg-light">
<div class="container py-5">
<h1 class="pt-5"><b>Projects</b></h1>
<h5 class="">Take a look at some of my recent work.</h5>
<div class="row mt-4">
<div class="col-12 col-md-4 my-3">
<img src="http://res.cloudinary.com/jbeta58/image/upload/v1505434329/Casablanca_aa0ydk.jpg" class="img-fluid img-thumbnail">
</div>
<div class="col-12 col-md-4 my-3">
<img src="http://res.cloudinary.com/jbeta58/image/upload/v1505434348/Back-to-the-Future-Honest-Trailer_m8v3ys.jpg" class="img-fluid img-thumbnail">
</div>
<div class="col-12 col-md-4 my-3">
<img src="http://res.cloudinary.com/jbeta58/image/upload/v1505434347/Godfather_wczucx.png" class="img-fluid img-thumbnail">
</div>
</div>
<div class="row">
<div class="col-12 col-md-4 my-3">
<img src="http://res.cloudinary.com/jbeta58/image/upload/v1505434341/Shawshank-redemption-hero_d1q6b0.jpg" class="img-fluid img-thumbnail">
</div>
<div class="col-12 col-md-4 my-3">
<img src="http://res.cloudinary.com/jbeta58/image/upload/v1505434341/Schindler-List_epsrfv.jpg" class="img-fluid img-thumbnail">
</div>
<div class="col-12 col-md-4 my-3">
<img src="http://res.cloudinary.com/jbeta58/image/upload/v1505434338/OrangeClockWork_g1gen9.jpg" class="img-fluid img-thumbnail">
</div>
</div>
</div>
</div>
<!-- Fin de sección Projects -->
<!-- Sección Contact -->
<div id="Contact" class="container-fluid py-5">
<div class="container pt-4">
<h1 class=""><b>Contact</b></h1>
<h5 class="">Feel free to contact me for quotes or any inquiries.</h5>
<form class="mt-5">
<div class="form-row">
<div class="form-group col-md-6">
<label for="InputFirstName">First Name</label>
<input type="text" class="form-control" id="InputlFirstName" placeholder="Enter your first name">
</div>
<div class="form-group col-md-6">
<label for="InputLastName">Last Name</label>
<input type="text" class="form-control" id="InputLastName" placeholder="Enter your last name">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="InputEmail">Email address</label>
<input type="email" class="form-control" id="InputEmail" aria-describedby="emailHelp" placeholder="Enter your email">
<small id="emailHelp" class="form-text text-muted">I'll never share your email or phone number with anyone else.</small>
</div>
<div class="form-group col-md-6">
<label for="InputPhoneNumber">Phone number</label>
<input type="text" class="form-control" id="InputPhoneNumber" placeholder="Enter your phone number">
</div>
</div>
<div class="form-group">
<label for="FormControlTextarea">Message</label>
<textarea class="form-control" id="FormControlTextarea" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-dark">Send</button>
</form>
</div>
</div>
<!-- Fin de sección Contact -->
<!-- Footer -->
<footer class="bg-secondary text-center text-white py-3">
<h6 class="py-3">© 2017 jbeta58. All rights reserved.</h6>
<!-- Botones de Redes Sociales Inferiores -->
<nav>
<div class "d-flex flex-row justify-content-center">
<a class="btn btn-social-icon btn-twitter fa fa-twitter-square fa-2x" href="https://twitter.com/jbeta58" target="_blank">
</a>
<a class="btn btn-social-icon btn-facebook fa fa-facebook-square fa-2x" href="https://facebook.com/jbeta58" target="_blank">
</a>
<!---->
<a class="btn btn-social-icon btn-linkedin fa fa-linkedin-square fa-2x" href="https://linkedin.com/in/jbeta58" target="_blank">
</a>
<a class="btn btn-social-icon btn-youtube fa fa-youtube-square fa-2x" href="https://youtube.com/jbeta58" target="_blank">
</a>
</div>
</nav>
<!-- Fin de botones de Redes Sociales Inferiores -->
</footer>
<!-- Fin Footer -->
</body>
<!-- Fin de la página web portafolio jbeta58 -->
body {
position: relative;
}
.bg-inicio{
background-image: url("http://res.cloudinary.com/jbeta58/image/upload/e_art:audrey/v1505357278/Foto-fondo-Sebas_y8r7if.jpg");
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
background-size: cover;
backgorund-position: center;
background-repeat: no-repeat;
height: 550px;
}
.bg-opaco {
opacity: 0.7;
}
.fa-youtube-square {
color: #ffffff;
}
.fa-linkedin-square {
color: #ffffff;
}
.fa-twitter-square {
color: #ffffff;
}
.fa-facebook-square {
color: #ffffff;
}
.fa:hover {
opacity: 0.5;
color: #e0e1e2;
}
Also see: Tab Triggers