Skip to content
Permalink
e028e13cbe
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
83 lines (74 sloc) 2.42 KB
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Week 2 Assignment</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,600&display=swap" rel="stylesheet">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Add your site or application content here -->
<header>
<div class="wrapper">
<a href="#">About Alex</a>
<nav>
<a href="#summary">Summary</a>
<a href="#interests">Interests</a>
<a href="#websites">Websites</a>
</nav>
</div>
</header>
<div class="hero">
<img id="me" src="img/me.jpg" alt="Alex Mueller ">
<h1>Hi! I'm Alex Mueller. </h1>
</div>
<main>
<div id="summary">
<h2>About Me</h2>
<p>I'm a student at the University of Connecticut majoring in Digital Media and
Design, with a concentration in Web and Interactive Media Design. After I graduate I hope to get work as
a front-end developer/designer, preferably for a startup, as I enjoy the startup culture. I've enjoyed
doing design and development since I was a teenager and I'm very glad that I'm able to take a hobby I've
had for a while and turn it into something I can actually pursue as a career.</p>
</div>
<div id="interests">
<h2>My Interests</h2>
<ul>
<li>Design</li>
<li>Music</li>
<li>Tech</li>
</ul>
</div>
<div id="websites">
<h2>My Favorite Websites</h2>
<ul>
<a href="https://youtube.com">
<li>YouTube</li>
</a>
<a href="https://reddit.com">
<li>Reddit</li>
</a>
<a href="https://twitter.com">
<li>Twitter</li>
</a>
</ul>
</div>
</main>
<footer>
<a href="#">About Alex</a>
</footer>
<script src="js/vendor/modernizr-3.8.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
</body>
</html>