generated from wmodes/lab-template
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (42 loc) · 1.66 KB
/
index.html
File metadata and controls
44 lines (42 loc) · 1.66 KB
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
<!DOCTYPE html>
<html>
<head>
<!-- This title is used for tabs and bookmarks -->
<title>Portfolio of My Name</title>
<!-- Use UTF character set, a good idea with any webpage -->
<meta charset="UTF-8" />
<!-- Set viewport so page remains consistently scaled w narrow devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Include a sitewide CSS file for consistent styling across the site -->
<link rel="stylesheet" type="text/css" href="css/site.css">
<!-- Experiment-specifc CSS file for any special styling of this particular page -->
<link rel="stylesheet" type="text/css" href="css/homepage.css">
</head>
<body>
<!-- Style this page by changing the CSS in ../css/site.css or css/experiment.css -->
<main id="content">
<h1>Portfolio of My Name</h1>
<section class="two-column">
<div class="minor-section">
<!-- Note that all filenames use lowercase and no spaces -->
<div class="image-wrapper">
<img class="cat-photo" src="./img/cute-grey-kitten.jpg">
</div>
<h2>About Me</h2>
<p>Tell us about yourself. Add photos. Customize this. Go crazy.</p>
</div>
<div class="minor-section">
<h2>Links to Experiments</h2>
<ul>
<li><a href="./experiment1/index.html">Experiment 1</a></li>
<li><a href="./experiment2/index.html">Experiment 2</a></li>
<li><a href="./experiment3/index.html">Experiment 3</a></li>
</ul>
</div>
</section>
<nav id="links">
<!-- Put links to experiments here. -->
</nav>
</main>
</body>
</html>