-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (82 loc) · 3.83 KB
/
index.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html> <!--Declares the type of document - HTML5-->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Discovering Dev</title>
<link href="styles/index-main.css" rel="stylesheet" type="text/css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin;>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap" rel="stylesheet";>
</head>
<header>
<div>
<h1>Discovering Web Development</h1>
<p class="header-tag"><em>Dev Academy Blog</em></p>
<!-- can make the image into a link if desired by nesting it within anchor tags-->
</div>
<!--<div>
<img src="https://live.staticflickr.com/5/6403546_52d9278902_b.jpg" alt="Decorative ponga tree in header">
</div>-->
</header>
<body>
<main>
<div class="introduction">
<h3>Introduction</h3>
<p> Welcome to the beginning of my website/blog home page. It will eventually contain a list of links to all my blogs. </p>
<p>These blogs will aim to document the content and challenges of my learning journey.</p>
</div>
<!--<div class="home-card">
<h2><a href="index.html">Home</a></h2>
</div>-->
<div class="core-card">
<h2><a href="blog/core-blogs.html">Core Blogs</a></h2>
<p>Musings about the non-technical skills that are being developed.</p>
</div>
<div class="tech-card">
<h2><a href="blog/tech-blogs.html">Technical Blogs</a></h2>
<p>Conversations about web-development tools and techniques.</p>
</div>
<div class="wide-cards">
<h2><a href="blog/learning-plan.html">Random Blogs</a></h2>
<p>Could be about anything else!</p>
</div>
<div class="wide-cards">
<h2><a href="blog/identity-values.html">About Me</a></h2>
</div>
<div>
<p>Please feel free to look around!</p>
</div>
</main>
<a href="#footer">Go to footer</a>
<div>
<h2><a href="https://devacademy.co.nz/" target="_blank">Enspiral Dev Academy</a> Manaia 2021</h2>
</div>
<div>
<p>If you would like to be kept up to date with new blog posts, please fill out your details below:</p>
<form action="#">
<input type="text" placeholder="Currently not functional..." required><!-- Note that the inputs are self-closing. Also, this currently doesnt go anywhere or do anything, tbc.
Also, I have made it required for funsies-->
<!--Would you also like to receive newsletters? example of radio button
<label for="Receive Newsletters please">
<input id="yes-newsletters" type="radio" name="yes-no-newsletters" checked>Yes</input>
</label>
<label for="Don't send me Newsletters please">
<input id="no-newsletters" type="radio" name="yes-no-newsletters">No</input>
</label>
-->
<!--Checkboxes example:
<p>Are you also in EDA?</p>
<label for="Yes I am">
<input id="yes-i-am" type="checkbox" name="EDA-aswell" value="In EDA">Yes I am
</label>
<label for="No, I'm Random">
<input id="no-im-random" type="checkbox" name="EDA-aswell" value="A Rando">No, I'm a Random
</label>
-->
<button type="submit">Submit tbc</button>
</form>
</div>
</body>
<footer id="footer">Made by Sarah Little</footer>
<!-- This is a comment to remind me what symbol to use for comments-->
</html>