-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdefault.htm
More file actions
47 lines (43 loc) · 1.01 KB
/
default.htm
File metadata and controls
47 lines (43 loc) · 1.01 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
45
46
47
<!DOCTYPE html>
<!--
Title
Description
Name, date
credits or additional comments
// -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Example Portfolio Site</title>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<h1>Work by YourName</h1>
<p>Give an introduction....</p>
<section>
<h2>title 1</h2>
<p>description<p>
</section>
<section>
<h2>title 2</h2>
<p>description<p>
</section>
<section>
<h2>title 3</h2>
<p>description<p>
</section>
<section>
<h2>title 4</h2>
<p>description<p>
</section>
<section>
<h2>title 5</h2>
<p>description<p>
</section>
</main>
<script src="script.js"></script>
</body>
</html>